Class that contains metadata for a single execution of a Chain or model. Here for backwards compatibility with older versions of langchain_core. This model will likely be deprecated in the future. Users can acquire the run_id information from callbacks or via run_id information pr
| 6 | |
| 7 | |
| 8 | class RunInfo(BaseModel): |
| 9 | """Class that contains metadata for a single execution of a Chain or model. |
| 10 | |
| 11 | Here for backwards compatibility with older versions of langchain_core. |
| 12 | |
| 13 | This model will likely be deprecated in the future. |
| 14 | |
| 15 | Users can acquire the run_id information from callbacks or via run_id |
| 16 | information present in the astream_event API (depending on the use case). |
| 17 | """ |
| 18 | |
| 19 | run_id: UUID |
| 20 | """A unique identifier for the model or chain run.""" |
no outgoing calls
no test coverage detected