DS Store gitignore

This commit is contained in:
marko-kraemer 2025-04-13 13:59:33 +01:00
parent e11d8beac6
commit c2ab65d0ed
4 changed files with 7 additions and 2 deletions

4
.gitignore vendored
View File

@ -174,3 +174,7 @@ state.json
# SQLite
*.db
# .DS_Store files
.DS_Store
**/.DS_Store

View File

@ -0,0 +1 @@
# AgentPress

View File

@ -101,8 +101,8 @@ async def run_agent(thread_id: str, project_id: str, stream: bool = True, thread
# temporary_message=state_message,
llm_model=model_name,
llm_temperature=0,
# llm_max_tokens=64000,
llm_max_tokens=32768,
llm_max_tokens=64000,
# llm_max_tokens=32768,
tool_choice="auto",
max_xml_tool_calls=1,
processor_config=ProcessorConfig(

View File