mirror of
https://github.com/tcsenpai/agenticSeek.git
synced 2025-06-06 11:05:26 +00:00
Fix :config
This commit is contained in:
parent
0c0536c43a
commit
267f42acce
@ -1,8 +1,9 @@
|
|||||||
[MAIN]
|
[MAIN]
|
||||||
is_local = True
|
is_local = True
|
||||||
provider_name = ollama
|
provider_name = ollama
|
||||||
provider_model = deepseek-r1:7b
|
provider_model = deepseek-r1:14b
|
||||||
provider_server_address = 127.0.0.1:5000
|
provider_server_address = 127.0.0.1:11434
|
||||||
agent_name = jarvis
|
agent_name = jarvis
|
||||||
recover_last_session = False
|
recover_last_session = True
|
||||||
speak = True
|
speak = True
|
||||||
|
listen = False
|
5
main.py
5
main.py
@ -37,13 +37,14 @@ def main():
|
|||||||
prompt_path="prompts/coder_agent.txt",
|
prompt_path="prompts/coder_agent.txt",
|
||||||
provider=provider),
|
provider=provider),
|
||||||
CasualAgent(model=config["MAIN"]["provider_model"],
|
CasualAgent(model=config["MAIN"]["provider_model"],
|
||||||
name="friday",
|
name=config["MAIN"]["agent_name"],
|
||||||
prompt_path="prompts/casual_agent.txt",
|
prompt_path="prompts/casual_agent.txt",
|
||||||
provider=provider)
|
provider=provider)
|
||||||
]
|
]
|
||||||
|
|
||||||
interaction = Interaction(agents, tts_enabled=config.getboolean('MAIN', 'speak'),
|
interaction = Interaction(agents, tts_enabled=config.getboolean('MAIN', 'speak'),
|
||||||
recover_last_session=config.getboolean('MAIN', 'recover_last_session'))
|
stt_enabled=config.getboolean('MAIN', 'listen'),
|
||||||
|
recover_last_session=config.getboolean('MAIN', 'recover_last_session'))
|
||||||
while interaction.is_active:
|
while interaction.is_active:
|
||||||
interaction.get_user()
|
interaction.get_user()
|
||||||
interaction.think()
|
interaction.think()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user