mirror of
https://github.com/hoshikawa2/compass_backoffice.git
synced 2026-07-09 13:54:20 +00:00
first commit
This commit is contained in:
4
configs_original_develop/README.md
Normal file
4
configs_original_develop/README.md
Normal file
@@ -0,0 +1,4 @@
|
||||
# Introduction
|
||||
<- Arquivos de configurações necessários (json,yalm, xml).
|
||||
|
||||
|
||||
32
configs_original_develop/config.example.yaml
Normal file
32
configs_original_develop/config.example.yaml
Normal file
@@ -0,0 +1,32 @@
|
||||
# Example configuration file for Agent Microservice
|
||||
# Copy this file to config.yaml and customize as needed
|
||||
|
||||
# Application Settings
|
||||
APP_NAME: "Agent Microservice"
|
||||
VERSION: "1.0.0"
|
||||
DEBUG: false
|
||||
|
||||
# Server Settings
|
||||
HOST: "0.0.0.0"
|
||||
PORT: 8000
|
||||
|
||||
# LLM Configuration
|
||||
LLM_PROVIDER: "openai" # Options: openai, anthropic
|
||||
LLM_MODEL: "gpt-4"
|
||||
LLM_TEMPERATURE: 0.7
|
||||
LLM_MAX_TOKENS: null # null for no limit, or specify a number
|
||||
|
||||
# API Keys (NEVER commit actual keys!)
|
||||
# Set these via environment variables instead
|
||||
OPENAI_API_KEY: "your-openai-key-here"
|
||||
ANTHROPIC_API_KEY: "your-anthropic-key-here"
|
||||
|
||||
# Logging Configuration
|
||||
LOG_LEVEL: "INFO" # Options: DEBUG, INFO, WARNING, ERROR, CRITICAL
|
||||
LOG_FORMAT: "json" # Options: json, text
|
||||
|
||||
# Agent Configuration (Optional)
|
||||
AGENT_NAME: "Example Agent"
|
||||
AGENT_DESCRIPTION: "An example agent built with LangGraph"
|
||||
AGENT_SYSTEM_PROMPT: "You are a helpful AI assistant."
|
||||
AGENT_MAX_ITERATIONS: 10
|
||||
Reference in New Issue
Block a user