diff options
| author | CaptainJack2491 <jayrupnakawala@gmail.com> | 2025-11-16 19:16:26 +0000 |
|---|---|---|
| committer | CaptainJack2491 <jayrupnakawala@gmail.com> | 2025-11-16 19:16:26 +0000 |
| commit | 666825f6cdcde8f107bc474853b1e3e13ad49370 (patch) | |
| tree | a3d30e8b34778bd747bd7fafa0098666f5310212 /src/agents/03-logs/main.py | |
| parent | 0a24528267e7e67be5d62daefbd061a98670eb15 (diff) | |
reasoning works for both toolcall and response
Diffstat (limited to 'src/agents/03-logs/main.py')
| -rw-r--r-- | src/agents/03-logs/main.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/agents/03-logs/main.py b/src/agents/03-logs/main.py new file mode 100644 index 0000000..6b85b95 --- /dev/null +++ b/src/agents/03-logs/main.py @@ -0,0 +1,7 @@ +# main.py +from agent import Agent + +if __name__ == "__main__": + user_prompt = "check if this username is valid 'jack'." + agent = Agent() + agent.run(user_prompt)
\ No newline at end of file |
