-
Notifications
You must be signed in to change notification settings - Fork 33
Apply latest changes to the Content Creator Application(Approach 2) #483
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -5,7 +5,7 @@ import from agent_core { Memory, Session } | |||||
| import from byllm.llm { Model } | ||||||
| import sys; | ||||||
|
|
||||||
| glob llm = Model(model_name="gpt-4o", verbose=False); | ||||||
| glob llm = Model(model_name="gpt-4o-mini", config={"verbose": False}); | ||||||
|
||||||
| glob llm = Model(model_name="gpt-4o-mini", config={"verbose": False}); | |
| glob llm = Model(model_name="gpt-4o-mini", verbose=False); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
node_clshere is a runtime variable (resolved viaget_node_class). Using it inside a typed traversal filter ((?:node_cls)) is not a valid node type reference in the new filter syntax, and will either fail to compile or never match, causing duplicate nodes to be attached every time. Consider querying outgoing nodes first and filtering with a predicate (e.g., via.filter(...)) or redesigning this to use a static node type / enum-to-type mapping.