Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion providers
Submodule providers updated 33 files
+95 −0 .claude/commands/file-jiras.md
+22 −0 .github/workflows/check_dependencies.yaml
+23 −0 .github/workflows/pyright.yaml
+20 −0 .github/workflows/radon.yaml
+16 −0 .github/workflows/shellcheck.yaml
+11 −0 dev-tools/README.md
+340 −0 dev-tools/fetch-jira.sh
+1,173 −0 dev-tools/file-jiras.sh
+35 −0 dev-tools/jira-common.sh
+1 −0 lightspeed_stack_providers/providers/inline/agents/lightspeed_inline_agent/__init__.py
+129 −91 lightspeed_stack_providers/providers/inline/agents/lightspeed_inline_agent/agents.py
+3 −2 lightspeed_stack_providers/providers/inline/safety/lightspeed_question_validity/__init__.py
+1 −0 lightspeed_stack_providers/providers/inline/safety/lightspeed_question_validity/config.py
+4 −2 lightspeed_stack_providers/providers/inline/safety/lightspeed_question_validity/safety.py
+1 −0 lightspeed_stack_providers/providers/inline/safety/lightspeed_redaction/lightspeed_redaction/__init__.py
+1 −0 lightspeed_stack_providers/providers/inline/safety/lightspeed_redaction/lightspeed_redaction/config.py
+1 −1 lightspeed_stack_providers/providers/remote/solr_vector_io/solr_vector_io/src/solr_vector_io/__init__.py
+21 −8 lightspeed_stack_providers/providers/remote/solr_vector_io/solr_vector_io/src/solr_vector_io/config.py
+293 −201 lightspeed_stack_providers/providers/remote/solr_vector_io/solr_vector_io/src/solr_vector_io/solr.py
+8 −1 pyproject.toml
+53 −0 scripts/codecov.sh
+5 −6 scripts/gen_doc.py
+3 −1 tests/features/steps/common_steps.py
+2 −0 tests/features/steps/question_validity_steps.py
+85 −12 tests/unit/providers/inline/agents/lightspeed_inline_agent/test_agent_instance_inline_agent.py
+9 −4 tests/unit/providers/inline/agents/lightspeed_inline_agent/test_agents_inline_agent.py
+1 −0 tests/unit/providers/inline/safety/lightspeed_question_validity/test_config_question_validity.py
+27 −13 tests/unit/providers/inline/safety/lightspeed_question_validity/test_safety_question_validity.py
+3 −2 tests/unit/providers/inline/safety/lightspeed_redaction/lightspeed_redaction/test_config_redaction.py
+25 −12 tests/unit/providers/inline/safety/lightspeed_redaction/lightspeed_redaction/test_redaction_redaction.py
+53 −20 tests/unit/providers/remote/solr_vector_io/test_doc_to_chunk.py
+431 −0 tests/unit/providers/remote/solr_vector_io/test_solr_chunk_window.py
+41 −17 uv.lock
Loading