Skip to content

Commit

Permalink
Update RAG docs and naming
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasVitale committed Oct 26, 2024
1 parent cf683f5 commit 5752220
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion 09-rag/rag-naive/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Retrieval Augmented Generation (RAG): Basic
# Retrieval Augmented Generation (RAG): Naive

Ask questions about documents with LLMs via Ollama and PGVector.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class RagBasic {
public class RagNaive {

public static void main(String[] args) {
SpringApplication.run(RagBasic.class, args);
SpringApplication.run(RagNaive.class, args);
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

@SpringBootTest
@Disabled
class RagBasicTests {
class RagNaiveTests {

@Test
void contextLoads() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

import org.springframework.boot.SpringApplication;

public class TestRagBasic {
public class TestRagNaive {

public static void main(String[] args) {
SpringApplication.from(RagBasic::main).with(TestcontainersConfiguration.class).run(args);
SpringApplication.from(RagNaive::main).with(TestcontainersConfiguration.class).run(args);
}

}

0 comments on commit 5752220

Please sign in to comment.