intentkit 0.7.5.dev19__py3-none-any.whl → 0.7.5.dev20__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of intentkit might be problematic. Click here for more details.
- intentkit/__init__.py +1 -1
- intentkit/core/engine.py +2 -2
- intentkit/models/agent.py +10 -4
- intentkit/models/llm.csv +1 -1
- intentkit/models/llm.py +3 -1
- {intentkit-0.7.5.dev19.dist-info → intentkit-0.7.5.dev20.dist-info}/METADATA +1 -1
- {intentkit-0.7.5.dev19.dist-info → intentkit-0.7.5.dev20.dist-info}/RECORD +9 -9
- {intentkit-0.7.5.dev19.dist-info → intentkit-0.7.5.dev20.dist-info}/WHEEL +0 -0
- {intentkit-0.7.5.dev19.dist-info → intentkit-0.7.5.dev20.dist-info}/licenses/LICENSE +0 -0
intentkit/__init__.py
CHANGED
intentkit/core/engine.py
CHANGED
|
@@ -144,8 +144,8 @@ async def build_agent(agent: Agent, agent_data: AgentData) -> CompiledStateGraph
|
|
|
144
144
|
# "gpt-5"
|
|
145
145
|
# ) # tmp disable gpt-5 search since package bugs
|
|
146
146
|
):
|
|
147
|
-
tools.append({"type": "
|
|
148
|
-
private_tools.append({"type": "
|
|
147
|
+
tools.append({"type": "web_search"})
|
|
148
|
+
private_tools.append({"type": "web_search"})
|
|
149
149
|
|
|
150
150
|
# Create the formatted_prompt function using the refactored prompt module
|
|
151
151
|
formatted_prompt = create_formatted_prompt_function(agent, agent_data)
|
intentkit/models/agent.py
CHANGED
|
@@ -1159,23 +1159,29 @@ class Agent(AgentCreate, AgentPublicInfo):
|
|
|
1159
1159
|
statistics: Annotated[
|
|
1160
1160
|
Optional[Dict[str, Any]],
|
|
1161
1161
|
PydanticField(
|
|
1162
|
-
|
|
1162
|
+
default=None,
|
|
1163
|
+
description="Statistics of the agent, update every 1 hour for query",
|
|
1163
1164
|
),
|
|
1164
1165
|
]
|
|
1165
1166
|
assets: Annotated[
|
|
1166
1167
|
Optional[Dict[str, Any]],
|
|
1167
|
-
PydanticField(
|
|
1168
|
+
PydanticField(
|
|
1169
|
+
default=None,
|
|
1170
|
+
description="Assets of the agent, update every 1 hour for query",
|
|
1171
|
+
),
|
|
1168
1172
|
]
|
|
1169
1173
|
account_snapshot: Annotated[
|
|
1170
1174
|
Optional[CreditAccount],
|
|
1171
1175
|
PydanticField(
|
|
1172
|
-
|
|
1176
|
+
default=None,
|
|
1177
|
+
description="Account snapshot of the agent, update every 1 hour for query",
|
|
1173
1178
|
),
|
|
1174
1179
|
]
|
|
1175
1180
|
extra: Annotated[
|
|
1176
1181
|
Optional[Dict[str, Any]],
|
|
1177
1182
|
PydanticField(
|
|
1178
|
-
|
|
1183
|
+
default=None,
|
|
1184
|
+
description="Other helper data fields for query, come from agent and agent data",
|
|
1179
1185
|
),
|
|
1180
1186
|
]
|
|
1181
1187
|
deployed_at: Annotated[
|
intentkit/models/llm.csv
CHANGED
|
@@ -5,7 +5,7 @@ gpt-4.1-nano,GPT-4.1 Nano,openai,TRUE,0.1,0.4,1,128000,4096,3,5,FALSE,TRUE,TRUE,
|
|
|
5
5
|
gpt-4.1-mini,GPT-4.1 Mini,openai,TRUE,0.4,1.6,2,128000,4096,4,4,FALSE,TRUE,TRUE,FALSE,TRUE,TRUE,FALSE,FALSE,,180
|
|
6
6
|
gpt-4.1,GPT-4.1,openai,TRUE,2,8,4,128000,4096,5,3,TRUE,TRUE,TRUE,FALSE,TRUE,TRUE,FALSE,FALSE,,180
|
|
7
7
|
gpt-5-nano,GPT-5 Nano,openai,TRUE,0.05,0.4,1,400000,128000,3,5,TRUE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,,180
|
|
8
|
-
gpt-5-mini,GPT-5 Mini,openai,TRUE,0.25,2,2,400000,128000,4,4,TRUE,TRUE,TRUE,TRUE,
|
|
8
|
+
gpt-5-mini,GPT-5 Mini,openai,TRUE,0.25,2,2,400000,128000,4,4,TRUE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,,180
|
|
9
9
|
gpt-5,GPT-5,openai,TRUE,1.25,10,4,400000,128000,5,3,TRUE,TRUE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,,180
|
|
10
10
|
o3,OpenAI o3,openai,TRUE,2,8,4,200000,100000,5,1,TRUE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,,180
|
|
11
11
|
o4-mini,OpenAI o4-mini,openai,TRUE,1.1,4.4,3,128000,4096,4,3,FALSE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,,180
|
intentkit/models/llm.py
CHANGED
|
@@ -387,8 +387,10 @@ class OpenAILLM(LLMModel):
|
|
|
387
387
|
if info.api_base:
|
|
388
388
|
kwargs["openai_api_base"] = info.api_base
|
|
389
389
|
|
|
390
|
-
if self.model_name.startswith("gpt-5"):
|
|
390
|
+
if self.model_name.startswith("gpt-5-"):
|
|
391
391
|
kwargs["reasoning_effort"] = "minimal"
|
|
392
|
+
elif self.model_name == "gpt-5":
|
|
393
|
+
kwargs["reasoning_effort"] = "low"
|
|
392
394
|
|
|
393
395
|
logger.debug(f"Creating ChatOpenAI instance with kwargs: {kwargs}")
|
|
394
396
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: intentkit
|
|
3
|
-
Version: 0.7.5.
|
|
3
|
+
Version: 0.7.5.dev20
|
|
4
4
|
Summary: Intent-based AI Agent Platform - Core Package
|
|
5
5
|
Project-URL: Homepage, https://github.com/crestalnetwork/intentkit
|
|
6
6
|
Project-URL: Repository, https://github.com/crestalnetwork/intentkit
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
intentkit/__init__.py,sha256=
|
|
1
|
+
intentkit/__init__.py,sha256=Q-Z_Hb6XRtJm9JXE5zTRO-bO5OZ2gxJR-bJaD5S7ag0,384
|
|
2
2
|
intentkit/abstracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
3
|
intentkit/abstracts/agent.py,sha256=108gb5W8Q1Sy4G55F2_ZFv2-_CnY76qrBtpIr0Oxxqk,1489
|
|
4
4
|
intentkit/abstracts/api.py,sha256=ZUc24vaQvQVbbjznx7bV0lbbQxdQPfEV8ZxM2R6wZWo,166
|
|
@@ -18,10 +18,10 @@ intentkit/core/api.py,sha256=WfoaHNquujYJIpNPuTR1dSaaxog0S3X2W4lG9Ehmkm4,3284
|
|
|
18
18
|
intentkit/core/chat.py,sha256=YN20CnDazWLjiOZFOHgV6uHmA2DKkvPCsD5Q5sfNcZg,1685
|
|
19
19
|
intentkit/core/client.py,sha256=J5K7f08-ucszBKAbn9K3QNOFKIC__7amTbKYii1jFkI,3056
|
|
20
20
|
intentkit/core/credit.py,sha256=b4f4T6G6eeBTMe0L_r8awWtXgUnqiog4IUaymDPYym0,75587
|
|
21
|
-
intentkit/core/engine.py,sha256=
|
|
21
|
+
intentkit/core/engine.py,sha256=qq6-Yx0F5InCG4PYMCeCEL0VORaVK75kVeNVVEeJVK0,37210
|
|
22
22
|
intentkit/core/node.py,sha256=P0LiBrjFtNBVC0JpQntTgDVfaLJM8aqhJZCJfPx6MJ0,8880
|
|
23
23
|
intentkit/core/prompt.py,sha256=idNx1ono4Maz2i6IBKfaKOBBbEQiWbaSxr2Eb1vZTI4,15482
|
|
24
|
-
intentkit/models/agent.py,sha256=
|
|
24
|
+
intentkit/models/agent.py,sha256=9zcu9QkI0p-Nipbhe_mMA7ndQwL7mgPAP9MJwmXaRJA,67712
|
|
25
25
|
intentkit/models/agent_data.py,sha256=5zq3EPKnygT2P1OHc2IfEmL8hXkjeBND6sJ0JJsvQJg,28370
|
|
26
26
|
intentkit/models/agent_public.json,sha256=0X8Bd2WOobDJLsok8avWNzmzu4uvKSGEyy6Myn53eT4,2802
|
|
27
27
|
intentkit/models/agent_schema.json,sha256=hFGUE57JIiN8V4olgLf2LBXPejA2QLiQoFc6riM1UFo,17139
|
|
@@ -33,8 +33,8 @@ intentkit/models/credit.py,sha256=CM_oOhcpKHkdCVTe86osYsBM9vIo-9N65SWrNKEKy7Y,52
|
|
|
33
33
|
intentkit/models/db.py,sha256=1uX1DJZGMx9A3lq6WKSTSwpXhWgWaiki55-iiED8BYM,5082
|
|
34
34
|
intentkit/models/db_mig.py,sha256=vT6Tanm-BHC2T7dTztuB1UG494EFBAlHADKsNzR6xaQ,3577
|
|
35
35
|
intentkit/models/generator.py,sha256=lyZu9U9rZUGkqd_QT5SAhay9DY358JJY8EhDSpN8I1M,10298
|
|
36
|
-
intentkit/models/llm.csv,sha256=
|
|
37
|
-
intentkit/models/llm.py,sha256
|
|
36
|
+
intentkit/models/llm.csv,sha256=AwopuPk4Z27xl1VqOA0ALufC9HqQfQCNN3wVWca2TBg,2599
|
|
37
|
+
intentkit/models/llm.py,sha256=caJ9UWAkQMm0Z1I8cmorkE6flt-j_us7cQnM7qD9fFw,20425
|
|
38
38
|
intentkit/models/redis.py,sha256=UoN8jqLREO1VO9_w6m-JhldpP19iEHj4TiGVCMutQW4,3702
|
|
39
39
|
intentkit/models/skill.py,sha256=-6FYzjnh2OL-l-K69dBUhmQZ-acJnXTRYBSOcjzy5mI,20329
|
|
40
40
|
intentkit/models/skills.csv,sha256=lvQg_1byPvJaHToQbEqRZarfYDuXpP4EXeVJVMc8aDs,19132
|
|
@@ -450,7 +450,7 @@ intentkit/utils/random.py,sha256=DymMxu9g0kuQLgJUqalvgksnIeLdS-v0aRk5nQU0mLI,452
|
|
|
450
450
|
intentkit/utils/s3.py,sha256=A8Nsx5QJyLsxhj9g7oHNy2-m24tjQUhC9URm8Qb1jFw,10057
|
|
451
451
|
intentkit/utils/slack_alert.py,sha256=s7UpRgyzLW7Pbmt8cKzTJgMA9bm4EP-1rQ5KXayHu6E,2264
|
|
452
452
|
intentkit/utils/tx.py,sha256=2yLLGuhvfBEY5n_GJ8wmIWLCzn0FsYKv5kRNzw_sLUI,1454
|
|
453
|
-
intentkit-0.7.5.
|
|
454
|
-
intentkit-0.7.5.
|
|
455
|
-
intentkit-0.7.5.
|
|
456
|
-
intentkit-0.7.5.
|
|
453
|
+
intentkit-0.7.5.dev20.dist-info/METADATA,sha256=ODEVYJqv4_tFXMrPyG1pMec3_fLUZQRFApN9uuoli8Q,6360
|
|
454
|
+
intentkit-0.7.5.dev20.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
455
|
+
intentkit-0.7.5.dev20.dist-info/licenses/LICENSE,sha256=Bln6DhK-LtcO4aXy-PBcdZv2f24MlJFm_qn222biJtE,1071
|
|
456
|
+
intentkit-0.7.5.dev20.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|