We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25d1f8c commit 256ea54Copy full SHA for 256ea54
1 file changed
server/agents/trend_crew/src/trend_crew/crew.py
@@ -51,6 +51,7 @@ def trend_alchemist(self) -> Agent:
51
# https://docs.crewai.com/concepts/tasks#overview-of-a-task
52
@task
53
def find_sources_task(self) -> Task:
54
+ print("API_BASE:", os.getenv("API_BASE"))
55
return Task(
56
config=self.tasks_config['find_sources'], # type: ignore[index]
57
tools=[
@@ -60,7 +61,7 @@ def find_sources_task(self) -> Task:
60
61
provider="ollama",
62
config=dict(
63
model="nomic-embed-text",
- base_url=os.getenv("API_BASE")
64
+ base_url=os.getenv("API_BASE"),
65
)
66
),
67
@@ -79,6 +80,7 @@ def collect_trend_data_task(self) -> Task:
79
80
81
82
83
84
85
86
0 commit comments