Skip to content

Commit

Permalink
Introduce new project structure
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasVitale committed Aug 26, 2024
1 parent 103b442 commit 438cda7
Show file tree
Hide file tree
Showing 217 changed files with 88 additions and 64 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package com.thomasvitale.ai.spring;

import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.params.ParameterizedTest;
import org.junit.jupiter.params.provider.ValueSource;
import org.springframework.beans.factory.annotation.Autowired;
Expand All @@ -17,6 +18,7 @@
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
@AutoConfigureWebTestClient(timeout = "120s")
@Import(TestcontainersConfiguration.class)
@Disabled
class OutputParsersOllamaApplicationTests {

@Autowired
Expand Down
Empty file added 08-vector-stores/.gitkeep
Empty file.
Empty file added 09-rag/.gitkeep
Empty file.
Empty file added 10-memory/.gitkeep
Empty file.
Empty file added 13-moderation-models/.gitkeep
Empty file.
Empty file added 15-evaluation/.gitkeep
Empty file.
Empty file added 16-agents/.gitkeep
Empty file.
107 changes: 64 additions & 43 deletions README.md

Large diffs are not rendered by default.

43 changes: 22 additions & 21 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,33 +21,34 @@ include '02-prompts:prompts-messages-ollama'
include '02-prompts:prompts-messages-openai'
include '02-prompts:prompts-templates-ollama'
include '02-prompts:prompts-templates-openai'
include '02-prompts:prompts-multimodality-ollama'
include '02-prompts:prompts-multimodality-openai'

include '03-structured-output:structured-output-ollama'
include '03-structured-output:structured-output-openai'

include '04-embedding-models:embedding-models-mistral-ai'
include '04-embedding-models:embedding-models-ollama'
include '04-embedding-models:embedding-models-openai'
include '04-embedding-models:embedding-models-transformers'
include '04-multimodality:multimodality-ollama'
include '04-multimodality:multimodality-openai'

include '05-etl-pipeline:document-readers-json-ollama'
include '05-etl-pipeline:document-readers-pdf-ollama'
include '05-etl-pipeline:document-readers-text-ollama'
include '05-etl-pipeline:document-transformers-metadata-ollama'
include '05-etl-pipeline:document-transformers-splitters-ollama'
include '05-function-calling:function-calling-mistral-ai'
include '05-function-calling:function-calling-ollama'
include '05-function-calling:function-calling-openai'

include '07-function-calling:function-calling-mistral-ai'
include '07-function-calling:function-calling-ollama'
include '07-function-calling:function-calling-openai'
include '06-embedding-models:embedding-models-mistral-ai'
include '06-embedding-models:embedding-models-ollama'
include '06-embedding-models:embedding-models-openai'
include '06-embedding-models:embedding-models-transformers'

include '08-image-models:image-models-openai'
include '07-data-ingestion:document-readers-json-ollama'
include '07-data-ingestion:document-readers-pdf-ollama'
include '07-data-ingestion:document-readers-text-ollama'
include '07-data-ingestion:document-transformers-metadata-ollama'
include '07-data-ingestion:document-transformers-splitters-ollama'

include '09-audio-models:audio-models-speech-openai'
include '09-audio-models:audio-models-transcription-openai'
include '11-image-models:image-models-openai'

include '10-observability:observability-models-mistral-ai'
include '10-observability:observability-models-ollama'
include '10-observability:observability-models-openai'
include '10-observability:observability-vector-stores-pgvector'
include '12-audio-models:audio-models-speech-openai'
include '12-audio-models:audio-models-transcription-openai'

include '14-observability:observability-models-mistral-ai'
include '14-observability:observability-models-ollama'
include '14-observability:observability-models-openai'
include '14-observability:observability-vector-stores-pgvector'

0 comments on commit 438cda7

Please sign in to comment.