-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
48 lines (39 loc) · 3 KB
/
Copy path.env.example
File metadata and controls
48 lines (39 loc) · 3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# Business Multi-Agent — Environment Variables
# Copy this file to .env and fill in the values before running.
# ── LLM Provider ─────────────────────────────────────────────────────────
OPENAI_API_KEY=your-openai-api-key
# ── JIRA ─────────────────────────────────────────────────────────────────
JIRA_SERVER=https://your-domain.atlassian.net/
JIRA_USER=your-email@domain.com
JIRA_API_TOKEN=your-jira-api-token
JIRA_PROJECT_KEY=PROJ
JIRA_TEAM_ID= # ID do Team (UUID). Exemplos do projeto ORC:
# Orchestra - Engenharia: 66c63392-5153-4dd8-9cd3-743e6c991662
# Orchestra - Cálculos & Documentos: 9a195e52-5bd3-4a67-ada8-c3964eb73178
# ── MIRO ─────────────────────────────────────────────────────────────────
MIRO_ACCESS_TOKEN=your-miro-access-token
MIRO_BOARD_ID=your-miro-board-id
# ── Camunda ──────────────────────────────────────────────────────────────
CAMUNDA_REST_URL=http://localhost:8080/engine-rest
CAMUNDA_USER=demo
CAMUNDA_PASSWORD=demo
# ── Web Search ───────────────────────────────────────────────────────────
TAVILY_API_KEY=your-tavily-api-key
SERPAPI_API_KEY=
# ── Draw.io ──────────────────────────────────────────────────────────────
# Diagramas são gerados localmente — nenhuma chave de API é necessária.
# Para sobrescrever o diretório de saída dos diagramas, defina abaixo:
DRAWIO_OUTPUT_DIR=
# ── Microsoft Teams Bot ──────────────────────────────────────────────────
TEAMS_APP_ID=your-azure-app-id
TEAMS_APP_PASSWORD=your-azure-app-password
TEAMS_PORT=3978
# ── Azure CosmosDB (optional — enables persistent conversation history) ───
# If not set, the bot falls back to in-memory history (lost on restart).
# Container must have partition key: /conversation_id
COSMOS_ENDPOINT=https://your-account.documents.azure.com:443/
COSMOS_KEY=your-cosmos-primary-key
COSMOS_DATABASE=business_bot
COSMOS_CONTAINER=conversations
# ── Output directory ─────────────────────────────────────────────────────
BUSINESS_OUTPUT_DIR=./business_output