You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(rlsapi): use chat completions API instead of Agent abstraction
The AsyncAgent.create_turn() method internally calls self.initialize()
which does not exist in llama-stack-client 0.3.5, causing AttributeError.
Switch to direct chat.completions.create() API which:
- Is simpler for stateless single-turn inference
- Avoids the broken Agent abstraction
- Has fewer moving parts (no session management needed)
Signed-off-by: Major Hayden <major@redhat.com>
0 commit comments