Context carries the chat identity associated with an agent request.
| 14 | |
| 15 | // Context carries the chat identity associated with an agent request. |
| 16 | type Context struct { |
| 17 | ID uuid.UUID |
| 18 | AncestorIDs []uuid.UUID |
| 19 | } |
| 20 | |
| 21 | // FromContext returns the chat identity stored on the context. |
| 22 | func FromContext(ctx context.Context) (Context, bool) { |
nothing calls this directly
no outgoing calls
no test coverage detected