Skip to content
Closed
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public final class MapDbArtifactService implements BaseArtifactService {
/**
* Constructs a MapDbArtifactService.
*
* @param dbFile The file path for the MapDB database file.
* @param filePath The file path for the MapDB database file.
*/
public MapDbArtifactService(String filePath) {
File dbFile = new File(filePath);
Expand Down
18 changes: 15 additions & 3 deletions core/src/main/java/com/google/adk/memory/MapDBVectorStore.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,21 @@
import org.mapdb.Serializer;

/**
* +----------------+ +-----------------+ | | | | | Client Apps |<-----> | Vector Store | | | | API
* | +----------------+ +--------+--------+ | | +-------+--------+ | | | MapDB Store | | |
* +----------------+
*
*
* <pre>
* +----------------+ +-----------------+
* | | | |
* | Client Apps |&lt;---&gt;| Vector Store |
* | | | API |
* +----------------+ +--------+--------+
* |
* +-------+--------+
* | |
* | MapDB Store |
* | |
* +----------------+
* </pre>
*
* @author manoj.kumar
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
* <p>The URL for the embedding service can be configured via the `EMBEDDING_GENERATOR_URL`
* environment variable.
*
* <p>Example: `export EMBEDDING_GENERATOR_URL="http://www.redbus.com/<serviceprovider>/embeddings"`
* <p>Example: `export EMBEDDING_GENERATOR_URL="http://www.redbus.com/serviceprovider/embeddings"`
*/
public class RedbusEmbeddingService implements EmbeddingService {
public static final MediaType JSON = MediaType.get("application/json; charset=utf-8");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@
/**
* @author ryzen
* @author Manoj Kumar, Sandeep Belgavi
* @date 2025-06-27
*/
public class BedrockBaseLM extends BaseLlm {

Expand Down
1 change: 0 additions & 1 deletion core/src/main/java/com/google/adk/models/OllamaBaseLM.java
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@
/**
* @author ryzen
* @author Manoj Kumar, Sandeep Belgavi
* @date 2025-06-27
*/
public class OllamaBaseLM extends BaseLlm {

Expand Down
3 changes: 0 additions & 3 deletions core/src/main/java/com/google/adk/runner/PostgresRunner.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@
/**
* @author Arun Parmar
* @author Yashas Shetty (Modified to use shared table)
* @param agent The agent to run
* @throws IOException if initialization fails
* @throws SQLException if database connection fails
*/
public class PostgresRunner extends Runner {
public PostgresRunner(BaseAgent agent) throws IOException, SQLException {
Expand Down
Loading