Spaces:
Build error
Build error
Update services/llama_generator.py
Browse files
services/llama_generator.py
CHANGED
|
@@ -5,10 +5,15 @@ from typing import List, Dict, Any, Optional, Tuple
|
|
| 5 |
from datetime import datetime
|
| 6 |
import logging
|
| 7 |
from config.config import settings
|
|
|
|
|
|
|
|
|
|
| 8 |
import asyncio
|
| 9 |
from io import StringIO
|
| 10 |
import pandas as pd
|
| 11 |
|
|
|
|
|
|
|
| 12 |
# Initialize Langfuse
|
| 13 |
os.environ["LANGFUSE_PUBLIC_KEY"] = "pk-lf-04d2302a-aa5c-4870-9703-58ab64c3bcae"
|
| 14 |
os.environ["LANGFUSE_SECRET_KEY"] = "sk-lf-d34ea200-feec-428e-a621-784fce93a5af"
|
|
|
|
| 5 |
from datetime import datetime
|
| 6 |
import logging
|
| 7 |
from config.config import settings
|
| 8 |
+
|
| 9 |
+
import services.prompt_builder
|
| 10 |
+
|
| 11 |
import asyncio
|
| 12 |
from io import StringIO
|
| 13 |
import pandas as pd
|
| 14 |
|
| 15 |
+
import os
|
| 16 |
+
|
| 17 |
# Initialize Langfuse
|
| 18 |
os.environ["LANGFUSE_PUBLIC_KEY"] = "pk-lf-04d2302a-aa5c-4870-9703-58ab64c3bcae"
|
| 19 |
os.environ["LANGFUSE_SECRET_KEY"] = "sk-lf-d34ea200-feec-428e-a621-784fce93a5af"
|