Michael Hahn
Michael Hahn
I think this would be cool. I'd really like to have notifications around deploys being complete, people sshing into containers etc
if we setup: https://github.com/remind101/empire/issues/458 i could route those to slack. i'm going to look into setting this up. i get tired of running `emp ps -a app` over and over...
I also was putting `user` as a key to simulate the user request and then the response. The QA example didn’t seem practical because then it requires the user prompt...
Something like this: ``` class NextAction(BaseModel): thought: str = Field( description="Think about the best next action based on what the user said." ) action: Literal["laugh", "cry"] model_config = ConfigDict( json_schema_extra={...
It looks like waiting on that 1.16 release isn't necessary: https://github.com/stanfordnlp/dspy/pull/582. Just bumping fast embed was enough and running: `poetry lock --no-update`.
hm not sure why it is failing either, seems to be an issue checking out my fork. I just rebased to bonk the tests again to see if they pass...
Rebased
Good call, I had just been focusing on my use case 😄 . Updated!
Fixed the merge conflict
I confirmed sorting happens here: https://github.com/pydantic/pydantic/blob/667cd3776ee40e06018d0b7ff477c6cd0199b098/pydantic/json_schema.py#L442 `to_jsonable_python` doesn't sort the json_schema_extra. _sort_json_schema currently avoids sorting some keys based on looking at the parent key, but that doesn't mean anything for...