o4-mini
Browse files- app.py +0 -1
- llm_service.py +1 -1
app.py
CHANGED
|
@@ -739,7 +739,6 @@ def aggregate_images(
|
|
| 739 |
|
| 740 |
|
| 741 |
llm_service = LLMService.from_partner()
|
| 742 |
-
# llm_service.model_name = "o3-mini"
|
| 743 |
|
| 744 |
DESCRIPTION_AGGREGATED_DEPTH_MAP_PROMPT = """You are a manufacturing expert analyzing 3D objects for production purposes. Given a set of multi-view depth maps of a single object, extract all possible special features relevant to manufacturing.
|
| 745 |
|
|
|
|
| 739 |
|
| 740 |
|
| 741 |
llm_service = LLMService.from_partner()
|
|
|
|
| 742 |
|
| 743 |
DESCRIPTION_AGGREGATED_DEPTH_MAP_PROMPT = """You are a manufacturing expert analyzing 3D objects for production purposes. Given a set of multi-view depth maps of a single object, extract all possible special features relevant to manufacturing.
|
| 744 |
|
llm_service.py
CHANGED
|
@@ -18,7 +18,7 @@ OPENAI_API_KEY = os.environ.get("OPENAI_API_KEY", "")
|
|
| 18 |
class OpenAIService:
|
| 19 |
def __init__(self):
|
| 20 |
# self.llm_settings = getattr(settings.llm, settings.llm.name)
|
| 21 |
-
self.model_name = "
|
| 22 |
self.temperature = 0.3 # settings.llm.openai.temperature
|
| 23 |
self.client = AsyncOpenAI(api_key=OPENAI_API_KEY)
|
| 24 |
# Follow the documentation: https://platform.openai.com/docs/models
|
|
|
|
| 18 |
class OpenAIService:
|
| 19 |
def __init__(self):
|
| 20 |
# self.llm_settings = getattr(settings.llm, settings.llm.name)
|
| 21 |
+
self.model_name = "o4-mini" # settings.llm.openai.model
|
| 22 |
self.temperature = 0.3 # settings.llm.openai.temperature
|
| 23 |
self.client = AsyncOpenAI(api_key=OPENAI_API_KEY)
|
| 24 |
# Follow the documentation: https://platform.openai.com/docs/models
|