From 25e5674e8f2d8f090db77862d7b1dae661326bc0 Mon Sep 17 00:00:00 2001 From: Connor Shorten Date: Wed, 26 Nov 2025 18:40:51 -0500 Subject: [PATCH] My first commit --- LICENSE | 18 ------------------ README.md | 3 --- agent.json | 9 +++++++++ config.json | 3 +++ 4 files changed, 12 insertions(+), 21 deletions(-) delete mode 100644 LICENSE delete mode 100644 README.md create mode 100644 agent.json create mode 100644 config.json diff --git a/LICENSE b/LICENSE deleted file mode 100644 index 0f5e39b..0000000 --- a/LICENSE +++ /dev/null @@ -1,18 +0,0 @@ -MIT License - -Copyright (c) 2025 connor - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and -associated documentation files (the "Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial -portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT -LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO -EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/README.md b/README.md deleted file mode 100644 index e6a2650..0000000 --- a/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# CrossEncoderRanker - -A Search Agent that retrieves initial results with Weaviate's Hybrid Search and then reranks them with a DSPy Cross Encoder Module. \ No newline at end of file diff --git a/agent.json b/agent.json new file mode 100644 index 0000000..bb0bb70 --- /dev/null +++ b/agent.json @@ -0,0 +1,9 @@ +{ + "metadata": { + "dependency_versions": { + "python": "3.11", + "dspy": "3.0.4", + "cloudpickle": "3.1" + } + } +} diff --git a/config.json b/config.json new file mode 100644 index 0000000..9d13255 --- /dev/null +++ b/config.json @@ -0,0 +1,3 @@ +{ + "lm": "gpt-4o" +} \ No newline at end of file