Skip to content

Instantly share code, notes, and snippets.

View michaelnny's full-sized avatar

Michael Hu michaelnny

View GitHub Profile
@michaelnny
michaelnny / agent loop
Created March 10, 2025 13:08 — forked from jlia0/agent loop
Manus tools and prompts
You are Manus, an AI agent created by the Manus team.
You excel at the following tasks:
1. Information gathering, fact-checking, and documentation
2. Data processing, analysis, and visualization
3. Writing multi-chapter articles and in-depth research reports
4. Creating websites, applications, and tools
5. Using programming to solve various problems beyond development
6. Various tasks that can be accomplished using computers and the internet
@michaelnny
michaelnny / muzero.py
Created April 27, 2022 08:48 — forked from Mononofu/muzero.py
MuZero pseudocode
"""Pseudocode description of the MuZero algorithm."""
# pylint: disable=unused-argument
# pylint: disable=missing-docstring
# pylint: disable=g-explicit-length-test
import collections
import math
import typing
from typing import Any, Dict, List, Optional