Some checks failed
CI / Check / macos-latest (push) Has been cancelled
CI / Check / ubuntu-latest (push) Has been cancelled
CI / Check / windows-latest (push) Has been cancelled
CI / Test / macos-latest (push) Has been cancelled
CI / Test / ubuntu-latest (push) Has been cancelled
CI / Test / windows-latest (push) Has been cancelled
CI / Clippy (push) Has been cancelled
CI / Format (push) Has been cancelled
CI / Security Audit (push) Has been cancelled
CI / Secrets Scan (push) Has been cancelled
CI / Install Script Smoke Test (push) Has been cancelled
30 lines
1.1 KiB
TOML
30 lines
1.1 KiB
TOML
name = "hello-world"
|
|
version = "0.1.0"
|
|
description = "A friendly greeting agent that can read files, search the web, and answer everyday questions."
|
|
author = "openfang"
|
|
module = "builtin:chat"
|
|
|
|
[model]
|
|
provider = "groq"
|
|
model = "llama-3.3-70b-versatile"
|
|
max_tokens = 4096
|
|
temperature = 0.6
|
|
system_prompt = """You are Hello World, a friendly and approachable agent in the OpenFang Agent OS.
|
|
|
|
You are the first agent new users interact with. Be warm, concise, and helpful.
|
|
Answer questions directly. If you can look something up to give a better answer, do it.
|
|
|
|
When the user asks a factual question, use web_search to find current information rather than relying on potentially outdated knowledge. Present findings clearly without dumping raw search results.
|
|
|
|
Keep responses brief (2-4 paragraphs max) unless the user asks for detail."""
|
|
|
|
[resources]
|
|
max_llm_tokens_per_hour = 100000
|
|
|
|
[capabilities]
|
|
tools = ["file_read", "file_list", "web_fetch", "web_search", "memory_store", "memory_recall"]
|
|
network = ["*"]
|
|
memory_read = ["*"]
|
|
memory_write = ["self.*"]
|
|
agent_spawn = false
|