Collin Dutter

Results 87 comments of Collin Dutter

FYI I started this work but it's non-trivial to extract default values from a `schema.Schema` instance. https://github.com/griptape-ai/griptape/issues/1499 may help here since we can at least hide the uglyness in a...

@shhlife unfortunately this is blocked on the ollama side. See: https://github.com/ollama/ollama/issues/5796 https://github.com/ollama/ollama/issues/7886

Bit more context, here is a basic repro script. May take a few runs to trigger. ```python import logging import schema from griptape.artifacts import InfoArtifact from griptape.configs import Defaults from...

Reverted back to enhancement since I had misinterpreted the issue. Mistral does not claim to be openai-compatible so it is expected that it does not work.

https://docs.astral.sh/ruff/settings/#lint_flake8-type-checking_runtime-evaluated-base-classes set to: ```toml runtime-evaluated-base-classes = ["griptape.mixins.serializable_mixin.SerializableMixin"] ``` Looks like we may need to refactor `griptape.common` similar to what we did for https://github.com/griptape-ai/griptape/pull/1164

Roughly, but the larger issue is how we use `import_optional_dependency`. We have all imports done lazily rather than eagerly at the top of the file. I think my ideal is...

I don't think we can solve this without moving to [namespaced imports](https://github.com/griptape-ai/griptape/pull/1595). I tried the [first proposed solution](https://github.com/griptape-ai/griptape/issues/1470#issuecomment-2557387384) and it took a considerable amount of time to: 1. Check whether...