diff --git a/LAST_RELEASE.md b/LAST_RELEASE.md index 6c308ed..48c39a0 100644 --- a/LAST_RELEASE.md +++ b/LAST_RELEASE.md @@ -2,6 +2,18 @@ ## Release notes +## v0.2.2 🧁 [cupcake] + +#### What's new in v0.2.2? + +##### Flock Agents + +> Inspired by: [Swarm by OpenAI](https://github.com/openai/swarm) + +Flock is a Parakeet package for creating and managing AI agents using the Ollama backend. It provides a simple way to create conversational agents, orchestrate interactions between them, and implement function calling capabilities. + +📝 [Documentation](https://github.com/parakeet-nest/parakeet/blob/main/docs/flock-agents.md) + ## v0.2.1 🧇 [waffle] #### What's new in v0.2.1? diff --git a/examples/01-generate/go.mod b/examples/01-generate/go.mod index bb86a19..cfc8bf4 100644 --- a/examples/01-generate/go.mod +++ b/examples/01-generate/go.mod @@ -2,6 +2,6 @@ module 01-generate go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 replace github.com/parakeet-nest/parakeet => ../.. \ No newline at end of file diff --git a/examples/02-generate-stream/go.mod b/examples/02-generate-stream/go.mod index 620e46b..272fb73 100644 --- a/examples/02-generate-stream/go.mod +++ b/examples/02-generate-stream/go.mod @@ -2,6 +2,6 @@ module 02-generate-stream go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 replace github.com/parakeet-nest/parakeet => ../.. diff --git a/examples/03-chat/go.mod b/examples/03-chat/go.mod index d828359..8e80d9f 100644 --- a/examples/03-chat/go.mod +++ b/examples/03-chat/go.mod @@ -2,6 +2,6 @@ module 03-chat go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 replace github.com/parakeet-nest/parakeet => ../.. \ No newline at end of file diff --git a/examples/04-chat-stream/go.mod b/examples/04-chat-stream/go.mod index cf0e8da..45dd753 100644 --- a/examples/04-chat-stream/go.mod +++ b/examples/04-chat-stream/go.mod @@ -2,6 +2,6 @@ module 04-chat-stream go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 replace github.com/parakeet-nest/parakeet => ../.. diff --git a/examples/05-context/go.mod b/examples/05-context/go.mod index 8515557..3664080 100644 --- a/examples/05-context/go.mod +++ b/examples/05-context/go.mod @@ -2,6 +2,6 @@ module 05-context go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 replace github.com/parakeet-nest/parakeet => ../.. diff --git a/examples/06-summary/go.mod b/examples/06-summary/go.mod index 49bea6c..2cf8f8c 100644 --- a/examples/06-summary/go.mod +++ b/examples/06-summary/go.mod @@ -2,6 +2,6 @@ module 06-summary go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 replace github.com/parakeet-nest/parakeet => ../.. diff --git a/examples/07-explain/go.mod b/examples/07-explain/go.mod index af91d55..8caa819 100644 --- a/examples/07-explain/go.mod +++ b/examples/07-explain/go.mod @@ -2,6 +2,6 @@ module 07-explain go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 replace github.com/parakeet-nest/parakeet => ../.. diff --git a/examples/08-embeddings-memory/go.mod b/examples/08-embeddings-memory/go.mod index e2dd69d..dfd19b9 100644 --- a/examples/08-embeddings-memory/go.mod +++ b/examples/08-embeddings-memory/go.mod @@ -2,7 +2,7 @@ module 08-embeddings go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 require ( github.com/cespare/xxhash/v2 v2.1.2 // indirect diff --git a/examples/09-embeddings-bbolt/create-embeddings/go.mod b/examples/09-embeddings-bbolt/create-embeddings/go.mod index 149c450..40702d6 100644 --- a/examples/09-embeddings-bbolt/create-embeddings/go.mod +++ b/examples/09-embeddings-bbolt/create-embeddings/go.mod @@ -2,7 +2,7 @@ module 09-embeddings-create go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 require ( github.com/cespare/xxhash/v2 v2.1.2 // indirect diff --git a/examples/09-embeddings-bbolt/embeddings-from-txt/go.mod b/examples/09-embeddings-bbolt/embeddings-from-txt/go.mod index bbe3614..d6bee4d 100644 --- a/examples/09-embeddings-bbolt/embeddings-from-txt/go.mod +++ b/examples/09-embeddings-bbolt/embeddings-from-txt/go.mod @@ -2,7 +2,7 @@ module 09-embeddings-from-txt go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 require ( github.com/cespare/xxhash/v2 v2.1.2 // indirect diff --git a/examples/09-embeddings-bbolt/use-embeddings/go.mod b/examples/09-embeddings-bbolt/use-embeddings/go.mod index 1eed85e..5ae61c2 100644 --- a/examples/09-embeddings-bbolt/use-embeddings/go.mod +++ b/examples/09-embeddings-bbolt/use-embeddings/go.mod @@ -2,7 +2,7 @@ module 09-embeddings-use go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 require ( github.com/cespare/xxhash/v2 v2.1.2 // indirect diff --git a/examples/10-chat-conversational-memory/go.mod b/examples/10-chat-conversational-memory/go.mod index 5840002..5ac6b7f 100644 --- a/examples/10-chat-conversational-memory/go.mod +++ b/examples/10-chat-conversational-memory/go.mod @@ -2,7 +2,7 @@ module 10-chat-memory go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 require ( go.etcd.io/bbolt v1.3.10 // indirect diff --git a/examples/11-chat-conversational-bbolt/begin/go.mod b/examples/11-chat-conversational-bbolt/begin/go.mod index a252205..8616009 100644 --- a/examples/11-chat-conversational-bbolt/begin/go.mod +++ b/examples/11-chat-conversational-bbolt/begin/go.mod @@ -2,7 +2,7 @@ module 11-chat-bbolt-begin go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 require ( go.etcd.io/bbolt v1.3.10 // indirect diff --git a/examples/11-chat-conversational-bbolt/resume/go.mod b/examples/11-chat-conversational-bbolt/resume/go.mod index f94332b..2b581bb 100644 --- a/examples/11-chat-conversational-bbolt/resume/go.mod +++ b/examples/11-chat-conversational-bbolt/resume/go.mod @@ -2,7 +2,7 @@ module 11-chat-bbolt-resume go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 require ( go.etcd.io/bbolt v1.3.10 // indirect diff --git a/examples/12-json-output/go.mod b/examples/12-json-output/go.mod index 9780fc0..ae25a1b 100644 --- a/examples/12-json-output/go.mod +++ b/examples/12-json-output/go.mod @@ -2,6 +2,6 @@ module 12-json-output go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 replace github.com/parakeet-nest/parakeet => ../.. \ No newline at end of file diff --git a/examples/13-simple-fake-function-calling/go.mod b/examples/13-simple-fake-function-calling/go.mod index d217b2f..045f071 100644 --- a/examples/13-simple-fake-function-calling/go.mod +++ b/examples/13-simple-fake-function-calling/go.mod @@ -2,6 +2,6 @@ module 13-simple-function-calling go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 replace github.com/parakeet-nest/parakeet => ../.. \ No newline at end of file diff --git a/examples/14-mistral-function-calling/go.mod b/examples/14-mistral-function-calling/go.mod index cb13e3d..28276e1 100644 --- a/examples/14-mistral-function-calling/go.mod +++ b/examples/14-mistral-function-calling/go.mod @@ -2,6 +2,6 @@ module 14-mistral-function-calling go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 replace github.com/parakeet-nest/parakeet => ../.. \ No newline at end of file diff --git a/examples/15-mistral-function-calling/go.mod b/examples/15-mistral-function-calling/go.mod index 1685438..d49f4ac 100644 --- a/examples/15-mistral-function-calling/go.mod +++ b/examples/15-mistral-function-calling/go.mod @@ -2,6 +2,6 @@ module 15-mistral-function-calling go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 replace github.com/parakeet-nest/parakeet => ../.. \ No newline at end of file diff --git a/examples/16-fake-function-calling/go.mod b/examples/16-fake-function-calling/go.mod index d9d340a..b127b2d 100644 --- a/examples/16-fake-function-calling/go.mod +++ b/examples/16-fake-function-calling/go.mod @@ -2,6 +2,6 @@ module 16-fake-function-calling go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 replace github.com/parakeet-nest/parakeet => ../.. \ No newline at end of file diff --git a/examples/17-fake-function-calling/go.mod b/examples/17-fake-function-calling/go.mod index 00ce57c..1c56c66 100644 --- a/examples/17-fake-function-calling/go.mod +++ b/examples/17-fake-function-calling/go.mod @@ -2,6 +2,6 @@ module 17-fake-function-calling go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 replace github.com/parakeet-nest/parakeet => ../.. \ No newline at end of file diff --git a/examples/18-call-functions-for-real/go.mod b/examples/18-call-functions-for-real/go.mod index c5f8abd..c2e7eaf 100644 --- a/examples/18-call-functions-for-real/go.mod +++ b/examples/18-call-functions-for-real/go.mod @@ -2,7 +2,7 @@ module 18-call-functions-for-real go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 require ( github.com/extism/go-sdk v1.2.0 // indirect diff --git a/examples/19-mistral-function-calling-tool-support/go.mod b/examples/19-mistral-function-calling-tool-support/go.mod index 10897c8..5fedb8a 100644 --- a/examples/19-mistral-function-calling-tool-support/go.mod +++ b/examples/19-mistral-function-calling-tool-support/go.mod @@ -2,6 +2,6 @@ module 19-mistral-function-calling-tool-support go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 replace github.com/parakeet-nest/parakeet => ../.. diff --git a/examples/20-play-with-granite/go.mod b/examples/20-play-with-granite/go.mod index b1a3525..d30d85f 100644 --- a/examples/20-play-with-granite/go.mod +++ b/examples/20-play-with-granite/go.mod @@ -2,6 +2,6 @@ module 20-play-with-granite go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 replace github.com/parakeet-nest/parakeet => ../.. diff --git a/examples/21-analysis-with-granite/go.mod b/examples/21-analysis-with-granite/go.mod index 327a050..c4d862c 100644 --- a/examples/21-analysis-with-granite/go.mod +++ b/examples/21-analysis-with-granite/go.mod @@ -2,6 +2,6 @@ module 21-analysis-with-granite go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 replace github.com/parakeet-nest/parakeet => ../.. diff --git a/examples/22-dockerizing/go.mod b/examples/22-dockerizing/go.mod index ccd199e..12dbbbd 100644 --- a/examples/22-dockerizing/go.mod +++ b/examples/22-dockerizing/go.mod @@ -2,6 +2,6 @@ module 22-dockerizing go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 replace github.com/parakeet-nest/parakeet => ../.. diff --git a/examples/23-rag-with-chunker/go.mod b/examples/23-rag-with-chunker/go.mod index 139af56..6b0af9d 100644 --- a/examples/23-rag-with-chunker/go.mod +++ b/examples/23-rag-with-chunker/go.mod @@ -2,7 +2,7 @@ module 23-rag-with-chunker go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 require ( github.com/cespare/xxhash/v2 v2.1.2 // indirect diff --git a/examples/24-rag-with-splitter/go.mod b/examples/24-rag-with-splitter/go.mod index 7e270ad..ca40dad 100644 --- a/examples/24-rag-with-splitter/go.mod +++ b/examples/24-rag-with-splitter/go.mod @@ -2,7 +2,7 @@ module 24-rag-with-splitter go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 require ( github.com/cespare/xxhash/v2 v2.1.2 // indirect diff --git a/examples/25-rag-with-regex/go.mod b/examples/25-rag-with-regex/go.mod index 5a1e7bd..9b4028c 100644 --- a/examples/25-rag-with-regex/go.mod +++ b/examples/25-rag-with-regex/go.mod @@ -2,7 +2,7 @@ module 25-rag-with-regex go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 require ( github.com/cespare/xxhash/v2 v2.1.2 // indirect diff --git a/examples/26-docker-cmd/01-talk-to-llm/go.mod b/examples/26-docker-cmd/01-talk-to-llm/go.mod index 2f07dc8..8d5b029 100644 --- a/examples/26-docker-cmd/01-talk-to-llm/go.mod +++ b/examples/26-docker-cmd/01-talk-to-llm/go.mod @@ -2,7 +2,7 @@ module 01-talk-to-llm go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 require ( go.etcd.io/bbolt v1.3.10 // indirect diff --git a/examples/26-docker-cmd/02-help-the-llm/go.mod b/examples/26-docker-cmd/02-help-the-llm/go.mod index 009b3b6..86ce230 100644 --- a/examples/26-docker-cmd/02-help-the-llm/go.mod +++ b/examples/26-docker-cmd/02-help-the-llm/go.mod @@ -2,7 +2,7 @@ module 02-help-the-llm go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 require ( go.etcd.io/bbolt v1.3.10 // indirect diff --git a/examples/26-docker-cmd/03-create-embeddings/go.mod b/examples/26-docker-cmd/03-create-embeddings/go.mod index f6ab994..92437c5 100644 --- a/examples/26-docker-cmd/03-create-embeddings/go.mod +++ b/examples/26-docker-cmd/03-create-embeddings/go.mod @@ -2,7 +2,7 @@ module 03-create-embeddings go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 require ( github.com/cespare/xxhash/v2 v2.1.2 // indirect diff --git a/examples/26-docker-cmd/03-wip-create-more-embeddings/go.mod b/examples/26-docker-cmd/03-wip-create-more-embeddings/go.mod index dcac7fb..afb3755 100644 --- a/examples/26-docker-cmd/03-wip-create-more-embeddings/go.mod +++ b/examples/26-docker-cmd/03-wip-create-more-embeddings/go.mod @@ -4,7 +4,7 @@ go 1.22.1 require ( github.com/google/uuid v1.6.0 - github.com/parakeet-nest/parakeet v0.2.1 + github.com/parakeet-nest/parakeet v0.2.2 ) require ( diff --git a/examples/26-docker-cmd/04-use-embeddings/go.mod b/examples/26-docker-cmd/04-use-embeddings/go.mod index 7d3747f..73ee605 100644 --- a/examples/26-docker-cmd/04-use-embeddings/go.mod +++ b/examples/26-docker-cmd/04-use-embeddings/go.mod @@ -2,7 +2,7 @@ module 04-use-embeddings go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 require ( github.com/cespare/xxhash/v2 v2.1.2 // indirect diff --git a/examples/27-generate-token/go.mod b/examples/27-generate-token/go.mod index 3a83d6d..61e0bf0 100644 --- a/examples/27-generate-token/go.mod +++ b/examples/27-generate-token/go.mod @@ -2,6 +2,6 @@ module 27-generate go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 replace github.com/parakeet-nest/parakeet => ../.. \ No newline at end of file diff --git a/examples/28-generate-stream-token/go.mod b/examples/28-generate-stream-token/go.mod index 1fc1d95..0499131 100644 --- a/examples/28-generate-stream-token/go.mod +++ b/examples/28-generate-stream-token/go.mod @@ -2,6 +2,6 @@ module 28-generate-stream go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 replace github.com/parakeet-nest/parakeet => ../.. diff --git a/examples/29-chat-token/go.mod b/examples/29-chat-token/go.mod index 9583671..3db35c3 100644 --- a/examples/29-chat-token/go.mod +++ b/examples/29-chat-token/go.mod @@ -2,6 +2,6 @@ module 29-chat go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 replace github.com/parakeet-nest/parakeet => ../.. \ No newline at end of file diff --git a/examples/30-chat-stream-token/go.mod b/examples/30-chat-stream-token/go.mod index b739a3f..9a436c9 100644 --- a/examples/30-chat-stream-token/go.mod +++ b/examples/30-chat-stream-token/go.mod @@ -2,6 +2,6 @@ module 30-chat-stream go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 replace github.com/parakeet-nest/parakeet => ../.. diff --git a/examples/31-embeddings-memory-token/go.mod b/examples/31-embeddings-memory-token/go.mod index 3b6849f..ca6a22c 100644 --- a/examples/31-embeddings-memory-token/go.mod +++ b/examples/31-embeddings-memory-token/go.mod @@ -2,7 +2,7 @@ module 31-embeddings-memory-token go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 require ( github.com/cespare/xxhash/v2 v2.1.2 // indirect diff --git a/examples/32-rag-with-redis/create-embeddings/go.mod b/examples/32-rag-with-redis/create-embeddings/go.mod index cea9153..f8eea21 100644 --- a/examples/32-rag-with-redis/create-embeddings/go.mod +++ b/examples/32-rag-with-redis/create-embeddings/go.mod @@ -2,7 +2,7 @@ module 32-rag-create-embeddings go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 require ( github.com/cespare/xxhash/v2 v2.1.2 // indirect diff --git a/examples/32-rag-with-redis/use-embeddings/go.mod b/examples/32-rag-with-redis/use-embeddings/go.mod index ab582e4..4f684d7 100644 --- a/examples/32-rag-with-redis/use-embeddings/go.mod +++ b/examples/32-rag-with-redis/use-embeddings/go.mod @@ -2,7 +2,7 @@ module 32-rag-use-embeddings go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 require ( github.com/cespare/xxhash/v2 v2.1.2 // indirect diff --git a/examples/33-rag-with-elastic/create-embeddings/go.mod b/examples/33-rag-with-elastic/create-embeddings/go.mod index 41a1ea7..e0c96f4 100644 --- a/examples/33-rag-with-elastic/create-embeddings/go.mod +++ b/examples/33-rag-with-elastic/create-embeddings/go.mod @@ -4,7 +4,7 @@ go 1.22.1 require ( github.com/joho/godotenv v1.5.1 - github.com/parakeet-nest/parakeet v0.2.1 + github.com/parakeet-nest/parakeet v0.2.2 ) require ( diff --git a/examples/33-rag-with-elastic/use-embeddings/go.mod b/examples/33-rag-with-elastic/use-embeddings/go.mod index a0f75b1..8d7b058 100644 --- a/examples/33-rag-with-elastic/use-embeddings/go.mod +++ b/examples/33-rag-with-elastic/use-embeddings/go.mod @@ -4,7 +4,7 @@ go 1.22.1 require ( github.com/joho/godotenv v1.5.1 - github.com/parakeet-nest/parakeet v0.2.1 + github.com/parakeet-nest/parakeet v0.2.2 ) require ( diff --git a/examples/34-rag-with-bbolt/create-embeddings/go.mod b/examples/34-rag-with-bbolt/create-embeddings/go.mod index cb56513..11ed85b 100644 --- a/examples/34-rag-with-bbolt/create-embeddings/go.mod +++ b/examples/34-rag-with-bbolt/create-embeddings/go.mod @@ -2,7 +2,7 @@ module 34-rag-create-embeddings go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 require ( github.com/cespare/xxhash/v2 v2.1.2 // indirect diff --git a/examples/34-rag-with-bbolt/use-embeddings/go.mod b/examples/34-rag-with-bbolt/use-embeddings/go.mod index 94a4fd4..698e5f7 100644 --- a/examples/34-rag-with-bbolt/use-embeddings/go.mod +++ b/examples/34-rag-with-bbolt/use-embeddings/go.mod @@ -2,7 +2,7 @@ module 34-rag-use-embeddings go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 require ( github.com/cespare/xxhash/v2 v2.1.2 // indirect diff --git a/examples/35-rag-with-bbolt/create-embeddings/go.mod b/examples/35-rag-with-bbolt/create-embeddings/go.mod index e4d0e5f..416d74d 100644 --- a/examples/35-rag-with-bbolt/create-embeddings/go.mod +++ b/examples/35-rag-with-bbolt/create-embeddings/go.mod @@ -2,7 +2,7 @@ module 35-rag-create-embeddings go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 require ( github.com/cespare/xxhash/v2 v2.1.2 // indirect diff --git a/examples/35-rag-with-bbolt/use-embeddings/go.mod b/examples/35-rag-with-bbolt/use-embeddings/go.mod index f02b654..c7cc21a 100644 --- a/examples/35-rag-with-bbolt/use-embeddings/go.mod +++ b/examples/35-rag-with-bbolt/use-embeddings/go.mod @@ -2,7 +2,7 @@ module 35-rag-use-embeddings go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 require ( github.com/cespare/xxhash/v2 v2.1.2 // indirect diff --git a/examples/36-rag-with-asciidoc/create-embeddings/go.mod b/examples/36-rag-with-asciidoc/create-embeddings/go.mod index 8d0f80d..ebc140a 100644 --- a/examples/36-rag-with-asciidoc/create-embeddings/go.mod +++ b/examples/36-rag-with-asciidoc/create-embeddings/go.mod @@ -2,7 +2,7 @@ module 36-rag-create-embeddings go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 require ( github.com/cespare/xxhash/v2 v2.1.2 // indirect diff --git a/examples/36-rag-with-asciidoc/use-embeddings/go.mod b/examples/36-rag-with-asciidoc/use-embeddings/go.mod index 5b8523c..bdd820a 100644 --- a/examples/36-rag-with-asciidoc/use-embeddings/go.mod +++ b/examples/36-rag-with-asciidoc/use-embeddings/go.mod @@ -2,7 +2,7 @@ module 36-rag-use-embeddings go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 require ( github.com/cespare/xxhash/v2 v2.1.2 // indirect diff --git a/examples/37-rag-with-html/create-embeddings/go.mod b/examples/37-rag-with-html/create-embeddings/go.mod index 1a21d5f..894001b 100644 --- a/examples/37-rag-with-html/create-embeddings/go.mod +++ b/examples/37-rag-with-html/create-embeddings/go.mod @@ -2,7 +2,7 @@ module 37-rag-create-embeddings go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 require ( github.com/cespare/xxhash/v2 v2.1.2 // indirect diff --git a/examples/37-rag-with-html/use-embeddings/go.mod b/examples/37-rag-with-html/use-embeddings/go.mod index a2d9b68..ffc16f5 100644 --- a/examples/37-rag-with-html/use-embeddings/go.mod +++ b/examples/37-rag-with-html/use-embeddings/go.mod @@ -2,7 +2,7 @@ module 37-rag-use-embeddings go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 require ( github.com/cespare/xxhash/v2 v2.1.2 // indirect diff --git a/examples/38-rag-with-markdown/create-embeddings/go.mod b/examples/38-rag-with-markdown/create-embeddings/go.mod index 3167c03..fb6b9c1 100644 --- a/examples/38-rag-with-markdown/create-embeddings/go.mod +++ b/examples/38-rag-with-markdown/create-embeddings/go.mod @@ -2,7 +2,7 @@ module 38-rag-create-embeddings go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 require ( github.com/cespare/xxhash/v2 v2.1.2 // indirect diff --git a/examples/38-rag-with-markdown/use-embeddings/go.mod b/examples/38-rag-with-markdown/use-embeddings/go.mod index 1376d6f..445de8f 100644 --- a/examples/38-rag-with-markdown/use-embeddings/go.mod +++ b/examples/38-rag-with-markdown/use-embeddings/go.mod @@ -2,7 +2,7 @@ module 38-rag-use-embeddings go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 require ( github.com/cespare/xxhash/v2 v2.1.2 // indirect diff --git a/examples/39-rag-with-elastic-markdown/create-embeddings/go.mod b/examples/39-rag-with-elastic-markdown/create-embeddings/go.mod index 1c145d9..9a62382 100644 --- a/examples/39-rag-with-elastic-markdown/create-embeddings/go.mod +++ b/examples/39-rag-with-elastic-markdown/create-embeddings/go.mod @@ -4,7 +4,7 @@ go 1.22.1 require ( github.com/joho/godotenv v1.5.1 - github.com/parakeet-nest/parakeet v0.2.1 + github.com/parakeet-nest/parakeet v0.2.2 ) require ( diff --git a/examples/39-rag-with-elastic-markdown/use-embeddings/go.mod b/examples/39-rag-with-elastic-markdown/use-embeddings/go.mod index 3843260..6beeeb7 100644 --- a/examples/39-rag-with-elastic-markdown/use-embeddings/go.mod +++ b/examples/39-rag-with-elastic-markdown/use-embeddings/go.mod @@ -4,7 +4,7 @@ go 1.22.1 require ( github.com/joho/godotenv v1.5.1 - github.com/parakeet-nest/parakeet v0.2.1 + github.com/parakeet-nest/parakeet v0.2.2 ) require ( diff --git a/examples/40-rag-with-elastic-markdown/create-embeddings/go.mod b/examples/40-rag-with-elastic-markdown/create-embeddings/go.mod index d284b6d..46b30a0 100644 --- a/examples/40-rag-with-elastic-markdown/create-embeddings/go.mod +++ b/examples/40-rag-with-elastic-markdown/create-embeddings/go.mod @@ -4,7 +4,7 @@ go 1.22.1 require ( github.com/joho/godotenv v1.5.1 - github.com/parakeet-nest/parakeet v0.2.1 + github.com/parakeet-nest/parakeet v0.2.2 ) require ( diff --git a/examples/40-rag-with-elastic-markdown/use-embeddings/go.mod b/examples/40-rag-with-elastic-markdown/use-embeddings/go.mod index b79414c..6b75311 100644 --- a/examples/40-rag-with-elastic-markdown/use-embeddings/go.mod +++ b/examples/40-rag-with-elastic-markdown/use-embeddings/go.mod @@ -4,7 +4,7 @@ go 1.22.1 require ( github.com/joho/godotenv v1.5.1 - github.com/parakeet-nest/parakeet v0.2.1 + github.com/parakeet-nest/parakeet v0.2.2 ) require ( diff --git a/examples/42-make-a-slm-smarter/01-context/go.mod b/examples/42-make-a-slm-smarter/01-context/go.mod index defdd13..6fe8cbd 100644 --- a/examples/42-make-a-slm-smarter/01-context/go.mod +++ b/examples/42-make-a-slm-smarter/01-context/go.mod @@ -2,7 +2,7 @@ module 42-context go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 require ( github.com/yuin/goldmark v1.7.4 // indirect diff --git a/examples/42-make-a-slm-smarter/02-rag/go.mod b/examples/42-make-a-slm-smarter/02-rag/go.mod index 158037e..85723e5 100644 --- a/examples/42-make-a-slm-smarter/02-rag/go.mod +++ b/examples/42-make-a-slm-smarter/02-rag/go.mod @@ -2,7 +2,7 @@ module 42-mem-rag go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 require ( github.com/cespare/xxhash/v2 v2.1.2 // indirect diff --git a/examples/42-make-a-slm-smarter/03-rag-list/go.mod b/examples/42-make-a-slm-smarter/03-rag-list/go.mod index 4c74e1f..dda3c18 100644 --- a/examples/42-make-a-slm-smarter/03-rag-list/go.mod +++ b/examples/42-make-a-slm-smarter/03-rag-list/go.mod @@ -2,7 +2,7 @@ module 42-mem-rag-list go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 require ( github.com/cespare/xxhash/v2 v2.1.2 // indirect diff --git a/examples/43-function-calling/01-xlam/go.mod b/examples/43-function-calling/01-xlam/go.mod index 86eb77f..40a2070 100644 --- a/examples/43-function-calling/01-xlam/go.mod +++ b/examples/43-function-calling/01-xlam/go.mod @@ -1,6 +1,6 @@ module 43-function-calling-01-xlam go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 replace github.com/parakeet-nest/parakeet => ../../.. diff --git a/examples/43-function-calling/02-qwen2tools/go.mod b/examples/43-function-calling/02-qwen2tools/go.mod index ff39cee..c4189d7 100644 --- a/examples/43-function-calling/02-qwen2tools/go.mod +++ b/examples/43-function-calling/02-qwen2tools/go.mod @@ -2,7 +2,7 @@ module 43-function-calling-02-qwen2tools go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 replace github.com/parakeet-nest/parakeet => ../../.. diff --git a/examples/44-chat-openai/go.mod b/examples/44-chat-openai/go.mod index e209774..485c07c 100644 --- a/examples/44-chat-openai/go.mod +++ b/examples/44-chat-openai/go.mod @@ -2,6 +2,6 @@ module 44-chat-openai go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 replace github.com/parakeet-nest/parakeet => ../.. \ No newline at end of file diff --git a/examples/45-chat-stream-openai/go.mod b/examples/45-chat-stream-openai/go.mod index 3dd1025..ae0be4e 100644 --- a/examples/45-chat-stream-openai/go.mod +++ b/examples/45-chat-stream-openai/go.mod @@ -2,6 +2,6 @@ module 45-chat-stream-openai go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 replace github.com/parakeet-nest/parakeet => ../.. \ No newline at end of file diff --git a/examples/46-create-an-expert/go.mod b/examples/46-create-an-expert/go.mod index a11f381..cd89ad7 100644 --- a/examples/46-create-an-expert/go.mod +++ b/examples/46-create-an-expert/go.mod @@ -4,7 +4,7 @@ go 1.22.1 require ( github.com/joho/godotenv v1.5.1 - github.com/parakeet-nest/parakeet v0.2.1 + github.com/parakeet-nest/parakeet v0.2.2 ) require ( diff --git a/examples/47-function-calling-xp/01-xlam/go.mod b/examples/47-function-calling-xp/01-xlam/go.mod index ea3957e..4d943c0 100644 --- a/examples/47-function-calling-xp/01-xlam/go.mod +++ b/examples/47-function-calling-xp/01-xlam/go.mod @@ -1,6 +1,6 @@ module 47-function-calling-01-xlam go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 replace github.com/parakeet-nest/parakeet => ../../.. diff --git a/examples/48-testing-models/mathstral/01-completion/go.mod b/examples/48-testing-models/mathstral/01-completion/go.mod index b584dd5..6ecbd8a 100644 --- a/examples/48-testing-models/mathstral/01-completion/go.mod +++ b/examples/48-testing-models/mathstral/01-completion/go.mod @@ -1,6 +1,6 @@ module 48-testing-models-mathstral-01-completion go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 replace github.com/parakeet-nest/parakeet => ../../../.. diff --git a/examples/48-testing-models/qwen2-math/01-completion/go.mod b/examples/48-testing-models/qwen2-math/01-completion/go.mod index d5add14..e1a552e 100644 --- a/examples/48-testing-models/qwen2-math/01-completion/go.mod +++ b/examples/48-testing-models/qwen2-math/01-completion/go.mod @@ -1,6 +1,6 @@ module 48-testing-models-qwen2-math-01-completion go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 replace github.com/parakeet-nest/parakeet => ../../../.. diff --git a/examples/48-testing-models/yi-coder/01-completion/go.mod b/examples/48-testing-models/yi-coder/01-completion/go.mod index 0afb432..7b6102c 100644 --- a/examples/48-testing-models/yi-coder/01-completion/go.mod +++ b/examples/48-testing-models/yi-coder/01-completion/go.mod @@ -1,6 +1,6 @@ module 48-testing-models-01-yi-coder go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 replace github.com/parakeet-nest/parakeet => ../../../.. diff --git a/examples/48-testing-models/yi-coder/02-insertion/go.mod b/examples/48-testing-models/yi-coder/02-insertion/go.mod index 6769ccc..67813b1 100644 --- a/examples/48-testing-models/yi-coder/02-insertion/go.mod +++ b/examples/48-testing-models/yi-coder/02-insertion/go.mod @@ -1,7 +1,7 @@ module 48-testing-models-02-yi-coder go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 replace github.com/parakeet-nest/parakeet => ../../../.. diff --git a/examples/48-testing-models/yi-coder/03-qa/go.mod b/examples/48-testing-models/yi-coder/03-qa/go.mod index 7f82b09..9ff094e 100644 --- a/examples/48-testing-models/yi-coder/03-qa/go.mod +++ b/examples/48-testing-models/yi-coder/03-qa/go.mod @@ -2,7 +2,7 @@ module 48-testing-models-03-yi-coder go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 require ( github.com/yuin/goldmark v1.7.4 // indirect diff --git a/examples/48-testing-models/yi-coder/04-gitlab-ci/go.mod b/examples/48-testing-models/yi-coder/04-gitlab-ci/go.mod index caf4f8a..5e4fbb3 100644 --- a/examples/48-testing-models/yi-coder/04-gitlab-ci/go.mod +++ b/examples/48-testing-models/yi-coder/04-gitlab-ci/go.mod @@ -2,7 +2,7 @@ module 48-testing-models-04-yi-coder go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 require ( github.com/yuin/goldmark v1.7.4 // indirect diff --git a/examples/49-embeddings-memory-openai/go.mod b/examples/49-embeddings-memory-openai/go.mod index 535f8c7..2f48b4e 100644 --- a/examples/49-embeddings-memory-openai/go.mod +++ b/examples/49-embeddings-memory-openai/go.mod @@ -2,7 +2,7 @@ module 49-embeddings go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 require ( github.com/cespare/xxhash/v2 v2.1.2 // indirect diff --git a/examples/50-llm-information/go.mod b/examples/50-llm-information/go.mod index c0cb0c3..ae0b64b 100644 --- a/examples/50-llm-information/go.mod +++ b/examples/50-llm-information/go.mod @@ -4,7 +4,7 @@ go 1.22.1 require ( github.com/joho/godotenv v1.5.1 - github.com/parakeet-nest/parakeet v0.2.1 + github.com/parakeet-nest/parakeet v0.2.2 ) replace github.com/parakeet-nest/parakeet => ../.. diff --git a/examples/51-genai-webapp/go.mod b/examples/51-genai-webapp/go.mod index 42f0e71..f70c53d 100644 --- a/examples/51-genai-webapp/go.mod +++ b/examples/51-genai-webapp/go.mod @@ -2,6 +2,6 @@ module parakeet-webapp go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 //replace github.com/parakeet-nest/parakeet => ../.. diff --git a/examples/52-constraints/go.mod b/examples/52-constraints/go.mod index 539e265..2af4979 100644 --- a/examples/52-constraints/go.mod +++ b/examples/52-constraints/go.mod @@ -2,6 +2,6 @@ module 52-constraints go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 replace github.com/parakeet-nest/parakeet => ../.. diff --git a/examples/53-constraints/go.mod b/examples/53-constraints/go.mod index 4237b2e..ba41d2a 100644 --- a/examples/53-constraints/go.mod +++ b/examples/53-constraints/go.mod @@ -2,6 +2,6 @@ module 53-constraints go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 replace github.com/parakeet-nest/parakeet => ../.. diff --git a/examples/54-constraints-webapp/go.mod b/examples/54-constraints-webapp/go.mod index 73f91aa..472870e 100644 --- a/examples/54-constraints-webapp/go.mod +++ b/examples/54-constraints-webapp/go.mod @@ -2,6 +2,6 @@ module constraints-webapp go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 //replace github.com/parakeet-nest/parakeet => ../.. diff --git a/examples/55-create-npc/go.mod b/examples/55-create-npc/go.mod index 81f3702..b073d5c 100644 --- a/examples/55-create-npc/go.mod +++ b/examples/55-create-npc/go.mod @@ -2,6 +2,6 @@ module 55-create-npc go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 replace github.com/parakeet-nest/parakeet => ../.. diff --git a/examples/56-jean-luc-picard/go.mod b/examples/56-jean-luc-picard/go.mod index 81bb389..44dafb5 100644 --- a/examples/56-jean-luc-picard/go.mod +++ b/examples/56-jean-luc-picard/go.mod @@ -2,6 +2,6 @@ module 56-jean-luc-picard go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 replace github.com/parakeet-nest/parakeet => ../.. diff --git a/examples/57-jean-luc-picard-rag/go.mod b/examples/57-jean-luc-picard-rag/go.mod index 9b881d5..bc7baac 100644 --- a/examples/57-jean-luc-picard-rag/go.mod +++ b/examples/57-jean-luc-picard-rag/go.mod @@ -4,7 +4,7 @@ go 1.22.1 require ( github.com/joho/godotenv v1.5.1 - github.com/parakeet-nest/parakeet v0.2.1 + github.com/parakeet-nest/parakeet v0.2.2 ) require ( diff --git a/examples/58-michael-burnham/go.mod b/examples/58-michael-burnham/go.mod index 098f5eb..1bce73b 100644 --- a/examples/58-michael-burnham/go.mod +++ b/examples/58-michael-burnham/go.mod @@ -2,6 +2,6 @@ module 58-michael-burnham go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 replace github.com/parakeet-nest/parakeet => ../.. diff --git a/examples/59-jean-luc-picard-contextual-retrieval/go.mod b/examples/59-jean-luc-picard-contextual-retrieval/go.mod index 1a04952..4cad7a2 100644 --- a/examples/59-jean-luc-picard-contextual-retrieval/go.mod +++ b/examples/59-jean-luc-picard-contextual-retrieval/go.mod @@ -2,7 +2,7 @@ module 59-buddy go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 require ( github.com/atotto/clipboard v0.1.4 // indirect diff --git a/examples/60-safety-models/go.mod b/examples/60-safety-models/go.mod index 2279013..e9e5db8 100644 --- a/examples/60-safety-models/go.mod +++ b/examples/60-safety-models/go.mod @@ -2,6 +2,6 @@ module 60-safety-models go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 replace github.com/parakeet-nest/parakeet => ../.. diff --git a/examples/61-agents/go.mod b/examples/61-agents/go.mod index 8968892..bff4a8b 100644 --- a/examples/61-agents/go.mod +++ b/examples/61-agents/go.mod @@ -2,7 +2,7 @@ module 61-agents go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 require ( github.com/atotto/clipboard v0.1.4 // indirect diff --git a/examples/62-agents-chat/go.mod b/examples/62-agents-chat/go.mod index d8c6d93..dbf579d 100644 --- a/examples/62-agents-chat/go.mod +++ b/examples/62-agents-chat/go.mod @@ -4,7 +4,7 @@ go 1.22.1 require ( github.com/joho/godotenv v1.5.1 - github.com/parakeet-nest/parakeet v0.2.1 + github.com/parakeet-nest/parakeet v0.2.2 ) require ( diff --git a/examples/63-agents-chat-stream/go.mod b/examples/63-agents-chat-stream/go.mod index 1c67c33..25fa741 100644 --- a/examples/63-agents-chat-stream/go.mod +++ b/examples/63-agents-chat-stream/go.mod @@ -2,7 +2,7 @@ module 63-agents-chat-stream go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 require ( github.com/atotto/clipboard v0.1.4 // indirect diff --git a/examples/64-agents-with-tools/go.mod b/examples/64-agents-with-tools/go.mod index 70cf03a..94ef631 100644 --- a/examples/64-agents-with-tools/go.mod +++ b/examples/64-agents-with-tools/go.mod @@ -2,7 +2,7 @@ module 64-agents-with-tools go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 require ( github.com/atotto/clipboard v0.1.4 // indirect diff --git a/examples/90-characters/go.mod b/examples/90-characters/go.mod index d7efe26..a35dcb5 100644 --- a/examples/90-characters/go.mod +++ b/examples/90-characters/go.mod @@ -2,6 +2,6 @@ module 90-characters go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 replace github.com/parakeet-nest/parakeet => ../.. diff --git a/examples/91-characters/go.mod b/examples/91-characters/go.mod index c4c8f37..7868c49 100644 --- a/examples/91-characters/go.mod +++ b/examples/91-characters/go.mod @@ -2,6 +2,6 @@ module 91-characters go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 replace github.com/parakeet-nest/parakeet => ../.. diff --git a/examples/99-testing/go.mod b/examples/99-testing/go.mod index bec9a28..cb06b57 100644 --- a/examples/99-testing/go.mod +++ b/examples/99-testing/go.mod @@ -2,7 +2,7 @@ module 99-testing go 1.22.1 -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 require ( github.com/atotto/clipboard v0.1.4 // indirect diff --git a/testing/data/go.mod b/testing/data/go.mod index c0e9f35..a0967c1 100644 --- a/testing/data/go.mod +++ b/testing/data/go.mod @@ -4,6 +4,6 @@ go 1.22.1 replace github.com/parakeet-nest/parakeet => ../.. -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 require gopkg.in/yaml.v2 v2.4.0 // indirect diff --git a/testing/interpolation/go.mod b/testing/interpolation/go.mod index 3b41b31..c193303 100644 --- a/testing/interpolation/go.mod +++ b/testing/interpolation/go.mod @@ -4,7 +4,7 @@ go 1.22.1 replace github.com/parakeet-nest/parakeet => ../.. -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2 require ( github.com/yuin/goldmark v1.7.4 // indirect diff --git a/testing/similarity/go.mod b/testing/similarity/go.mod index 7a1ea0d..63b3458 100644 --- a/testing/similarity/go.mod +++ b/testing/similarity/go.mod @@ -4,4 +4,4 @@ go 1.22.1 replace github.com/parakeet-nest/parakeet => ../.. -require github.com/parakeet-nest/parakeet v0.2.1 +require github.com/parakeet-nest/parakeet v0.2.2