Madras1 commited on
Commit
8f5a30e
verified
1 Parent(s): 4956e79

Upload 77 files

Browse files
app/config.py CHANGED
@@ -23,9 +23,6 @@ class Settings(BaseSettings):
23
  # Cerebras API for LLM-based entity extraction
24
  cerebras_api_key: str = ""
25
 
26
- # NumVerify API for phone lookup (free tier: 100 req/month)
27
- numverify_api_key: str = ""
28
-
29
  # CORS
30
  cors_origins: list[str] = ["*"]
31
 
 
23
  # Cerebras API for LLM-based entity extraction
24
  cerebras_api_key: str = ""
25
 
 
 
 
26
  # CORS
27
  cors_origins: list[str] = ["*"]
28
 
app/services/investigator_agent.py CHANGED
@@ -117,23 +117,6 @@ TOOLS = [
117
  }
118
  }
119
  },
120
- {
121
- "type": "function",
122
- "function": {
123
- "name": "lookup_phone",
124
- "description": "Consultar informa莽玫es de um n煤mero de telefone. Retorna pa铆s, operadora, tipo de linha (fixo/m贸vel) e validade.",
125
- "parameters": {
126
- "type": "object",
127
- "properties": {
128
- "phone": {
129
- "type": "string",
130
- "description": "N煤mero de telefone com c贸digo do pa铆s (ex: 5511999998888)"
131
- }
132
- },
133
- "required": ["phone"]
134
- }
135
- }
136
- },
137
  {
138
  "type": "function",
139
  "function": {
 
117
  }
118
  }
119
  },
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
120
  {
121
  "type": "function",
122
  "function": {