2023-11-15 15:46:37 +01:00
|
|
|
use deserr::Deserr;
|
|
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
|
2024-03-25 10:05:38 +01:00
|
|
|
use super::rest::InputType;
|
2024-03-27 11:51:04 +01:00
|
|
|
use super::{ollama, openai, DistributionShift};
|
2023-12-13 22:06:39 +01:00
|
|
|
use crate::prompt::PromptData;
|
2023-11-15 15:46:37 +01:00
|
|
|
use crate::update::Setting;
|
|
|
|
use crate::vector::EmbeddingConfig;
|
2023-12-20 17:08:32 +01:00
|
|
|
use crate::UserError;
|
2023-11-15 15:46:37 +01:00
|
|
|
|
|
|
|
#[derive(Debug, Clone, Default, Serialize, Deserialize, PartialEq, Eq, Deserr)]
|
|
|
|
#[serde(deny_unknown_fields, rename_all = "camelCase")]
|
|
|
|
#[deserr(rename_all = camelCase, deny_unknown_fields)]
|
|
|
|
pub struct EmbeddingSettings {
|
|
|
|
#[serde(default, skip_serializing_if = "Setting::is_not_set")]
|
|
|
|
#[deserr(default)]
|
2023-12-20 17:08:32 +01:00
|
|
|
pub source: Setting<EmbedderSource>,
|
2023-11-15 15:46:37 +01:00
|
|
|
#[serde(default, skip_serializing_if = "Setting::is_not_set")]
|
|
|
|
#[deserr(default)]
|
2023-12-20 17:08:32 +01:00
|
|
|
pub model: Setting<String>,
|
|
|
|
#[serde(default, skip_serializing_if = "Setting::is_not_set")]
|
|
|
|
#[deserr(default)]
|
|
|
|
pub revision: Setting<String>,
|
|
|
|
#[serde(default, skip_serializing_if = "Setting::is_not_set")]
|
|
|
|
#[deserr(default)]
|
|
|
|
pub api_key: Setting<String>,
|
|
|
|
#[serde(default, skip_serializing_if = "Setting::is_not_set")]
|
|
|
|
#[deserr(default)]
|
|
|
|
pub dimensions: Setting<usize>,
|
|
|
|
#[serde(default, skip_serializing_if = "Setting::is_not_set")]
|
|
|
|
#[deserr(default)]
|
|
|
|
pub document_template: Setting<String>,
|
2024-03-25 10:05:38 +01:00
|
|
|
#[serde(default, skip_serializing_if = "Setting::is_not_set")]
|
|
|
|
#[deserr(default)]
|
|
|
|
pub url: Setting<String>,
|
|
|
|
#[serde(default, skip_serializing_if = "Setting::is_not_set")]
|
|
|
|
#[deserr(default)]
|
|
|
|
pub query: Setting<serde_json::Value>,
|
|
|
|
#[serde(default, skip_serializing_if = "Setting::is_not_set")]
|
|
|
|
#[deserr(default)]
|
|
|
|
pub input_field: Setting<Vec<String>>,
|
|
|
|
#[serde(default, skip_serializing_if = "Setting::is_not_set")]
|
|
|
|
#[deserr(default)]
|
|
|
|
pub path_to_embeddings: Setting<Vec<String>>,
|
|
|
|
#[serde(default, skip_serializing_if = "Setting::is_not_set")]
|
|
|
|
#[deserr(default)]
|
|
|
|
pub embedding_object: Setting<Vec<String>>,
|
|
|
|
#[serde(default, skip_serializing_if = "Setting::is_not_set")]
|
|
|
|
#[deserr(default)]
|
|
|
|
pub input_type: Setting<InputType>,
|
2024-03-27 11:51:04 +01:00
|
|
|
#[serde(default, skip_serializing_if = "Setting::is_not_set")]
|
|
|
|
#[deserr(default)]
|
|
|
|
pub distribution: Setting<DistributionShift>,
|
2023-12-20 17:08:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn check_unset<T>(
|
|
|
|
key: &Setting<T>,
|
|
|
|
field: &'static str,
|
|
|
|
source: EmbedderSource,
|
|
|
|
embedder_name: &str,
|
|
|
|
) -> Result<(), UserError> {
|
|
|
|
if matches!(key, Setting::NotSet) {
|
|
|
|
Ok(())
|
|
|
|
} else {
|
|
|
|
Err(UserError::InvalidFieldForSource {
|
|
|
|
embedder_name: embedder_name.to_owned(),
|
|
|
|
source_: source,
|
|
|
|
field,
|
|
|
|
allowed_fields_for_source: EmbeddingSettings::allowed_fields_for_source(source),
|
|
|
|
allowed_sources_for_field: EmbeddingSettings::allowed_sources_for_field(field),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn check_set<T>(
|
|
|
|
key: &Setting<T>,
|
|
|
|
field: &'static str,
|
|
|
|
source: EmbedderSource,
|
|
|
|
embedder_name: &str,
|
|
|
|
) -> Result<(), UserError> {
|
|
|
|
if matches!(key, Setting::Set(_)) {
|
|
|
|
Ok(())
|
|
|
|
} else {
|
|
|
|
Err(UserError::MissingFieldForSource {
|
|
|
|
field,
|
|
|
|
source_: source,
|
|
|
|
embedder_name: embedder_name.to_owned(),
|
|
|
|
})
|
2023-11-15 15:46:37 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-12-20 17:08:32 +01:00
|
|
|
impl EmbeddingSettings {
|
2023-12-20 17:48:09 +01:00
|
|
|
pub const SOURCE: &'static str = "source";
|
|
|
|
pub const MODEL: &'static str = "model";
|
|
|
|
pub const REVISION: &'static str = "revision";
|
|
|
|
pub const API_KEY: &'static str = "apiKey";
|
|
|
|
pub const DIMENSIONS: &'static str = "dimensions";
|
|
|
|
pub const DOCUMENT_TEMPLATE: &'static str = "documentTemplate";
|
2023-12-20 17:08:32 +01:00
|
|
|
|
2024-03-25 10:05:38 +01:00
|
|
|
pub const URL: &'static str = "url";
|
|
|
|
pub const QUERY: &'static str = "query";
|
|
|
|
pub const INPUT_FIELD: &'static str = "inputField";
|
|
|
|
pub const PATH_TO_EMBEDDINGS: &'static str = "pathToEmbeddings";
|
|
|
|
pub const EMBEDDING_OBJECT: &'static str = "embeddingObject";
|
|
|
|
pub const INPUT_TYPE: &'static str = "inputType";
|
|
|
|
|
2024-03-27 11:51:04 +01:00
|
|
|
pub const DISTRIBUTION: &'static str = "distribution";
|
|
|
|
|
2023-12-20 17:08:32 +01:00
|
|
|
pub fn allowed_sources_for_field(field: &'static str) -> &'static [EmbedderSource] {
|
|
|
|
match field {
|
2024-03-25 10:05:38 +01:00
|
|
|
Self::SOURCE => &[
|
|
|
|
EmbedderSource::HuggingFace,
|
|
|
|
EmbedderSource::OpenAi,
|
|
|
|
EmbedderSource::UserProvided,
|
|
|
|
EmbedderSource::Rest,
|
|
|
|
EmbedderSource::Ollama,
|
|
|
|
],
|
2024-03-20 10:08:28 +01:00
|
|
|
Self::MODEL => {
|
|
|
|
&[EmbedderSource::HuggingFace, EmbedderSource::OpenAi, EmbedderSource::Ollama]
|
|
|
|
}
|
2023-12-20 17:08:32 +01:00
|
|
|
Self::REVISION => &[EmbedderSource::HuggingFace],
|
2024-03-25 11:50:00 +01:00
|
|
|
Self::API_KEY => {
|
|
|
|
&[EmbedderSource::OpenAi, EmbedderSource::Ollama, EmbedderSource::Rest]
|
|
|
|
}
|
2024-03-25 10:05:38 +01:00
|
|
|
Self::DIMENSIONS => {
|
|
|
|
&[EmbedderSource::OpenAi, EmbedderSource::UserProvided, EmbedderSource::Rest]
|
2024-03-20 10:08:28 +01:00
|
|
|
}
|
2024-03-25 10:05:38 +01:00
|
|
|
Self::DOCUMENT_TEMPLATE => &[
|
|
|
|
EmbedderSource::HuggingFace,
|
|
|
|
EmbedderSource::OpenAi,
|
|
|
|
EmbedderSource::Ollama,
|
|
|
|
EmbedderSource::Rest,
|
|
|
|
],
|
2024-03-25 11:13:21 +01:00
|
|
|
Self::URL => &[EmbedderSource::Ollama, EmbedderSource::Rest],
|
2024-03-25 10:05:38 +01:00
|
|
|
Self::QUERY => &[EmbedderSource::Rest],
|
|
|
|
Self::INPUT_FIELD => &[EmbedderSource::Rest],
|
|
|
|
Self::PATH_TO_EMBEDDINGS => &[EmbedderSource::Rest],
|
|
|
|
Self::EMBEDDING_OBJECT => &[EmbedderSource::Rest],
|
|
|
|
Self::INPUT_TYPE => &[EmbedderSource::Rest],
|
2024-03-27 11:51:04 +01:00
|
|
|
Self::DISTRIBUTION => &[
|
|
|
|
EmbedderSource::HuggingFace,
|
|
|
|
EmbedderSource::Ollama,
|
|
|
|
EmbedderSource::OpenAi,
|
|
|
|
EmbedderSource::Rest,
|
|
|
|
EmbedderSource::UserProvided,
|
|
|
|
],
|
2023-12-20 17:08:32 +01:00
|
|
|
_other => unreachable!("unknown field"),
|
2023-11-15 15:46:37 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-12-20 17:08:32 +01:00
|
|
|
pub fn allowed_fields_for_source(source: EmbedderSource) -> &'static [&'static str] {
|
|
|
|
match source {
|
2024-02-07 10:39:19 +01:00
|
|
|
EmbedderSource::OpenAi => &[
|
|
|
|
Self::SOURCE,
|
|
|
|
Self::MODEL,
|
|
|
|
Self::API_KEY,
|
|
|
|
Self::DOCUMENT_TEMPLATE,
|
|
|
|
Self::DIMENSIONS,
|
2024-03-27 11:51:04 +01:00
|
|
|
Self::DISTRIBUTION,
|
2024-02-07 10:39:19 +01:00
|
|
|
],
|
2024-03-27 11:51:04 +01:00
|
|
|
EmbedderSource::HuggingFace => &[
|
|
|
|
Self::SOURCE,
|
|
|
|
Self::MODEL,
|
|
|
|
Self::REVISION,
|
|
|
|
Self::DOCUMENT_TEMPLATE,
|
|
|
|
Self::DISTRIBUTION,
|
|
|
|
],
|
|
|
|
EmbedderSource::Ollama => &[
|
|
|
|
Self::SOURCE,
|
|
|
|
Self::MODEL,
|
|
|
|
Self::DOCUMENT_TEMPLATE,
|
|
|
|
Self::URL,
|
|
|
|
Self::API_KEY,
|
|
|
|
Self::DISTRIBUTION,
|
|
|
|
],
|
|
|
|
EmbedderSource::UserProvided => &[Self::SOURCE, Self::DIMENSIONS, Self::DISTRIBUTION],
|
2024-03-25 10:05:38 +01:00
|
|
|
EmbedderSource::Rest => &[
|
|
|
|
Self::SOURCE,
|
|
|
|
Self::API_KEY,
|
|
|
|
Self::DIMENSIONS,
|
|
|
|
Self::DOCUMENT_TEMPLATE,
|
|
|
|
Self::URL,
|
|
|
|
Self::QUERY,
|
|
|
|
Self::INPUT_FIELD,
|
|
|
|
Self::PATH_TO_EMBEDDINGS,
|
|
|
|
Self::EMBEDDING_OBJECT,
|
|
|
|
Self::INPUT_TYPE,
|
2024-03-27 11:51:04 +01:00
|
|
|
Self::DISTRIBUTION,
|
2024-03-25 10:05:38 +01:00
|
|
|
],
|
2023-11-15 15:46:37 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-12-20 17:08:32 +01:00
|
|
|
pub(crate) fn apply_default_source(setting: &mut Setting<EmbeddingSettings>) {
|
|
|
|
if let Setting::Set(EmbeddingSettings {
|
|
|
|
source: source @ (Setting::NotSet | Setting::Reset),
|
|
|
|
..
|
|
|
|
}) = setting
|
|
|
|
{
|
|
|
|
*source = Setting::Set(EmbedderSource::default())
|
2023-11-15 15:46:37 +01:00
|
|
|
}
|
|
|
|
}
|
2024-02-07 10:39:19 +01:00
|
|
|
|
|
|
|
pub(crate) fn apply_default_openai_model(setting: &mut Setting<EmbeddingSettings>) {
|
|
|
|
if let Setting::Set(EmbeddingSettings {
|
|
|
|
source: Setting::Set(EmbedderSource::OpenAi),
|
|
|
|
model: model @ (Setting::NotSet | Setting::Reset),
|
|
|
|
..
|
|
|
|
}) = setting
|
|
|
|
{
|
|
|
|
*model = Setting::Set(openai::EmbeddingModel::default().name().to_owned())
|
|
|
|
}
|
|
|
|
}
|
2023-11-15 15:46:37 +01:00
|
|
|
}
|
|
|
|
|
2023-12-20 17:08:32 +01:00
|
|
|
#[derive(Debug, Clone, Copy, Default, Serialize, Deserialize, PartialEq, Eq, Deserr)]
|
2023-11-15 15:46:37 +01:00
|
|
|
#[serde(deny_unknown_fields, rename_all = "camelCase")]
|
|
|
|
#[deserr(rename_all = camelCase, deny_unknown_fields)]
|
2023-12-20 17:08:32 +01:00
|
|
|
pub enum EmbedderSource {
|
|
|
|
#[default]
|
|
|
|
OpenAi,
|
|
|
|
HuggingFace,
|
2024-03-20 10:08:28 +01:00
|
|
|
Ollama,
|
2023-12-20 17:08:32 +01:00
|
|
|
UserProvided,
|
2024-03-25 10:05:38 +01:00
|
|
|
Rest,
|
2023-11-15 15:46:37 +01:00
|
|
|
}
|
|
|
|
|
2023-12-20 17:08:32 +01:00
|
|
|
impl std::fmt::Display for EmbedderSource {
|
|
|
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
|
|
|
let s = match self {
|
|
|
|
EmbedderSource::OpenAi => "openAi",
|
|
|
|
EmbedderSource::HuggingFace => "huggingFace",
|
|
|
|
EmbedderSource::UserProvided => "userProvided",
|
2024-03-20 10:08:28 +01:00
|
|
|
EmbedderSource::Ollama => "ollama",
|
2024-03-25 10:05:38 +01:00
|
|
|
EmbedderSource::Rest => "rest",
|
2023-12-20 17:08:32 +01:00
|
|
|
};
|
|
|
|
f.write_str(s)
|
2023-11-15 15:46:37 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-12-20 17:08:32 +01:00
|
|
|
impl EmbeddingSettings {
|
|
|
|
pub fn apply(&mut self, new: Self) {
|
2024-03-25 10:05:38 +01:00
|
|
|
let EmbeddingSettings {
|
|
|
|
source,
|
|
|
|
model,
|
|
|
|
revision,
|
|
|
|
api_key,
|
|
|
|
dimensions,
|
|
|
|
document_template,
|
|
|
|
url,
|
|
|
|
query,
|
|
|
|
input_field,
|
|
|
|
path_to_embeddings,
|
|
|
|
embedding_object,
|
|
|
|
input_type,
|
|
|
|
} = new;
|
2023-12-20 17:08:32 +01:00
|
|
|
let old_source = self.source;
|
|
|
|
self.source.apply(source);
|
|
|
|
// Reinitialize the whole setting object on a source change
|
|
|
|
if old_source != self.source {
|
|
|
|
*self = EmbeddingSettings {
|
|
|
|
source,
|
|
|
|
model,
|
|
|
|
revision,
|
|
|
|
api_key,
|
|
|
|
dimensions,
|
|
|
|
document_template,
|
2024-03-25 10:05:38 +01:00
|
|
|
url,
|
|
|
|
query,
|
|
|
|
input_field,
|
|
|
|
path_to_embeddings,
|
|
|
|
embedding_object,
|
|
|
|
input_type,
|
2023-12-20 17:08:32 +01:00
|
|
|
};
|
|
|
|
return;
|
2023-11-15 15:46:37 +01:00
|
|
|
}
|
|
|
|
|
2023-12-20 17:08:32 +01:00
|
|
|
self.model.apply(model);
|
|
|
|
self.revision.apply(revision);
|
2023-11-15 15:46:37 +01:00
|
|
|
self.api_key.apply(api_key);
|
2023-12-20 17:08:32 +01:00
|
|
|
self.dimensions.apply(dimensions);
|
|
|
|
self.document_template.apply(document_template);
|
2024-03-25 10:05:38 +01:00
|
|
|
|
|
|
|
self.url.apply(url);
|
|
|
|
self.query.apply(query);
|
|
|
|
self.input_field.apply(input_field);
|
|
|
|
self.path_to_embeddings.apply(path_to_embeddings);
|
|
|
|
self.embedding_object.apply(embedding_object);
|
|
|
|
self.input_type.apply(input_type);
|
2023-11-15 15:46:37 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-12-20 17:08:32 +01:00
|
|
|
impl From<EmbeddingConfig> for EmbeddingSettings {
|
|
|
|
fn from(value: EmbeddingConfig) -> Self {
|
|
|
|
let EmbeddingConfig { embedder_options, prompt } = value;
|
|
|
|
match embedder_options {
|
|
|
|
super::EmbedderOptions::HuggingFace(options) => Self {
|
|
|
|
source: Setting::Set(EmbedderSource::HuggingFace),
|
|
|
|
model: Setting::Set(options.model),
|
|
|
|
revision: options.revision.map(Setting::Set).unwrap_or_default(),
|
|
|
|
api_key: Setting::NotSet,
|
|
|
|
dimensions: Setting::NotSet,
|
|
|
|
document_template: Setting::Set(prompt.template),
|
2024-03-25 10:05:38 +01:00
|
|
|
url: Setting::NotSet,
|
|
|
|
query: Setting::NotSet,
|
|
|
|
input_field: Setting::NotSet,
|
|
|
|
path_to_embeddings: Setting::NotSet,
|
|
|
|
embedding_object: Setting::NotSet,
|
|
|
|
input_type: Setting::NotSet,
|
2024-03-27 11:51:04 +01:00
|
|
|
distribution: options.distribution.map(Setting::Set).unwrap_or_default(),
|
2023-12-20 17:08:32 +01:00
|
|
|
},
|
|
|
|
super::EmbedderOptions::OpenAi(options) => Self {
|
|
|
|
source: Setting::Set(EmbedderSource::OpenAi),
|
|
|
|
model: Setting::Set(options.embedding_model.name().to_owned()),
|
|
|
|
revision: Setting::NotSet,
|
|
|
|
api_key: options.api_key.map(Setting::Set).unwrap_or_default(),
|
2024-03-18 16:10:12 +01:00
|
|
|
dimensions: options.dimensions.map(Setting::Set).unwrap_or_default(),
|
2024-03-03 01:11:25 +01:00
|
|
|
document_template: Setting::Set(prompt.template),
|
2024-03-25 10:05:38 +01:00
|
|
|
url: Setting::NotSet,
|
|
|
|
query: Setting::NotSet,
|
|
|
|
input_field: Setting::NotSet,
|
|
|
|
path_to_embeddings: Setting::NotSet,
|
|
|
|
embedding_object: Setting::NotSet,
|
|
|
|
input_type: Setting::NotSet,
|
2024-03-27 11:51:04 +01:00
|
|
|
distribution: options.distribution.map(Setting::Set).unwrap_or_default(),
|
2024-03-03 01:11:25 +01:00
|
|
|
},
|
2024-03-20 10:08:28 +01:00
|
|
|
super::EmbedderOptions::Ollama(options) => Self {
|
|
|
|
source: Setting::Set(EmbedderSource::Ollama),
|
2024-03-19 15:41:37 +01:00
|
|
|
model: Setting::Set(options.embedding_model.to_owned()),
|
2024-03-20 10:08:28 +01:00
|
|
|
revision: Setting::NotSet,
|
|
|
|
api_key: Setting::NotSet,
|
|
|
|
dimensions: Setting::NotSet,
|
|
|
|
document_template: Setting::Set(prompt.template),
|
2024-03-25 10:05:38 +01:00
|
|
|
url: Setting::NotSet,
|
|
|
|
query: Setting::NotSet,
|
|
|
|
input_field: Setting::NotSet,
|
|
|
|
path_to_embeddings: Setting::NotSet,
|
|
|
|
embedding_object: Setting::NotSet,
|
|
|
|
input_type: Setting::NotSet,
|
2024-03-27 11:51:04 +01:00
|
|
|
distribution: options.distribution.map(Setting::Set).unwrap_or_default(),
|
2024-03-20 10:08:28 +01:00
|
|
|
},
|
2023-12-20 17:08:32 +01:00
|
|
|
super::EmbedderOptions::UserProvided(options) => Self {
|
|
|
|
source: Setting::Set(EmbedderSource::UserProvided),
|
|
|
|
model: Setting::NotSet,
|
|
|
|
revision: Setting::NotSet,
|
|
|
|
api_key: Setting::NotSet,
|
|
|
|
dimensions: Setting::Set(options.dimensions),
|
|
|
|
document_template: Setting::NotSet,
|
2024-03-25 10:05:38 +01:00
|
|
|
url: Setting::NotSet,
|
|
|
|
query: Setting::NotSet,
|
|
|
|
input_field: Setting::NotSet,
|
|
|
|
path_to_embeddings: Setting::NotSet,
|
|
|
|
embedding_object: Setting::NotSet,
|
|
|
|
input_type: Setting::NotSet,
|
2024-03-27 11:51:04 +01:00
|
|
|
distribution: options.distribution.map(Setting::Set).unwrap_or_default(),
|
2024-03-25 10:05:38 +01:00
|
|
|
},
|
|
|
|
super::EmbedderOptions::Rest(super::rest::EmbedderOptions {
|
|
|
|
api_key,
|
|
|
|
dimensions,
|
|
|
|
url,
|
|
|
|
query,
|
|
|
|
input_field,
|
|
|
|
path_to_embeddings,
|
|
|
|
embedding_object,
|
|
|
|
input_type,
|
2024-03-27 11:51:04 +01:00
|
|
|
distribution,
|
2024-03-25 10:05:38 +01:00
|
|
|
}) => Self {
|
|
|
|
source: Setting::Set(EmbedderSource::Rest),
|
|
|
|
model: Setting::NotSet,
|
|
|
|
revision: Setting::NotSet,
|
|
|
|
api_key: api_key.map(Setting::Set).unwrap_or_default(),
|
|
|
|
dimensions: dimensions.map(Setting::Set).unwrap_or_default(),
|
|
|
|
document_template: Setting::Set(prompt.template),
|
|
|
|
url: Setting::Set(url),
|
|
|
|
query: Setting::Set(query),
|
|
|
|
input_field: Setting::Set(input_field),
|
|
|
|
path_to_embeddings: Setting::Set(path_to_embeddings),
|
|
|
|
embedding_object: Setting::Set(embedding_object),
|
|
|
|
input_type: Setting::Set(input_type),
|
2024-03-27 11:51:04 +01:00
|
|
|
distribution: distribution.map(Setting::Set).unwrap_or_default(),
|
2023-12-20 17:08:32 +01:00
|
|
|
},
|
2023-11-15 15:46:37 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-12-20 17:08:32 +01:00
|
|
|
impl From<EmbeddingSettings> for EmbeddingConfig {
|
|
|
|
fn from(value: EmbeddingSettings) -> Self {
|
|
|
|
let mut this = Self::default();
|
2024-03-25 10:05:38 +01:00
|
|
|
let EmbeddingSettings {
|
|
|
|
source,
|
|
|
|
model,
|
|
|
|
revision,
|
|
|
|
api_key,
|
|
|
|
dimensions,
|
|
|
|
document_template,
|
|
|
|
url,
|
|
|
|
query,
|
|
|
|
input_field,
|
|
|
|
path_to_embeddings,
|
|
|
|
embedding_object,
|
|
|
|
input_type,
|
2024-03-27 11:51:04 +01:00
|
|
|
distribution,
|
2024-03-25 10:05:38 +01:00
|
|
|
} = value;
|
2024-03-27 11:51:04 +01:00
|
|
|
|
2023-12-20 17:08:32 +01:00
|
|
|
if let Some(source) = source.set() {
|
|
|
|
match source {
|
|
|
|
EmbedderSource::OpenAi => {
|
|
|
|
let mut options = super::openai::EmbedderOptions::with_default_model(None);
|
|
|
|
if let Some(model) = model.set() {
|
|
|
|
if let Some(model) = super::openai::EmbeddingModel::from_name(&model) {
|
|
|
|
options.embedding_model = model;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if let Some(api_key) = api_key.set() {
|
|
|
|
options.api_key = Some(api_key);
|
|
|
|
}
|
2024-01-30 16:32:57 +01:00
|
|
|
if let Some(dimensions) = dimensions.set() {
|
|
|
|
options.dimensions = Some(dimensions);
|
|
|
|
}
|
2024-03-27 11:51:04 +01:00
|
|
|
options.distribution = distribution.set();
|
2023-12-20 17:08:32 +01:00
|
|
|
this.embedder_options = super::EmbedderOptions::OpenAi(options);
|
|
|
|
}
|
2024-03-20 10:08:28 +01:00
|
|
|
EmbedderSource::Ollama => {
|
|
|
|
let mut options: ollama::EmbedderOptions =
|
2024-03-25 11:50:00 +01:00
|
|
|
super::ollama::EmbedderOptions::with_default_model(
|
|
|
|
api_key.set(),
|
|
|
|
url.set(),
|
|
|
|
);
|
2024-03-20 10:08:28 +01:00
|
|
|
if let Some(model) = model.set() {
|
2024-03-19 15:41:37 +01:00
|
|
|
options.embedding_model = model;
|
2024-03-20 10:08:28 +01:00
|
|
|
}
|
2024-03-25 11:13:21 +01:00
|
|
|
|
2024-03-27 11:51:04 +01:00
|
|
|
options.distribution = distribution.set();
|
2024-03-20 10:08:28 +01:00
|
|
|
this.embedder_options = super::EmbedderOptions::Ollama(options);
|
|
|
|
}
|
2023-12-20 17:08:32 +01:00
|
|
|
EmbedderSource::HuggingFace => {
|
|
|
|
let mut options = super::hf::EmbedderOptions::default();
|
|
|
|
if let Some(model) = model.set() {
|
|
|
|
options.model = model;
|
|
|
|
// Reset the revision if we are setting the model.
|
|
|
|
// This allows the following:
|
|
|
|
// "huggingFace": {} -> default model with default revision
|
|
|
|
// "huggingFace": { "model": "name-of-the-default-model" } -> default model without a revision
|
|
|
|
// "huggingFace": { "model": "some-other-model" } -> most importantly, other model without a revision
|
|
|
|
options.revision = None;
|
|
|
|
}
|
|
|
|
if let Some(revision) = revision.set() {
|
|
|
|
options.revision = Some(revision);
|
|
|
|
}
|
2024-03-27 11:51:04 +01:00
|
|
|
options.distribution = distribution.set();
|
2023-12-20 17:08:32 +01:00
|
|
|
this.embedder_options = super::EmbedderOptions::HuggingFace(options);
|
|
|
|
}
|
|
|
|
EmbedderSource::UserProvided => {
|
|
|
|
this.embedder_options =
|
|
|
|
super::EmbedderOptions::UserProvided(super::manual::EmbedderOptions {
|
|
|
|
dimensions: dimensions.set().unwrap(),
|
2024-03-27 11:51:04 +01:00
|
|
|
distribution: distribution.set(),
|
2023-12-20 17:08:32 +01:00
|
|
|
});
|
|
|
|
}
|
2024-03-25 10:05:38 +01:00
|
|
|
EmbedderSource::Rest => {
|
|
|
|
let embedder_options = super::rest::EmbedderOptions::default();
|
|
|
|
|
|
|
|
this.embedder_options =
|
|
|
|
super::EmbedderOptions::Rest(super::rest::EmbedderOptions {
|
|
|
|
api_key: api_key.set(),
|
|
|
|
dimensions: dimensions.set(),
|
|
|
|
url: url.set().unwrap(),
|
|
|
|
query: query.set().unwrap_or(embedder_options.query),
|
|
|
|
input_field: input_field.set().unwrap_or(embedder_options.input_field),
|
|
|
|
path_to_embeddings: path_to_embeddings
|
|
|
|
.set()
|
|
|
|
.unwrap_or(embedder_options.path_to_embeddings),
|
|
|
|
embedding_object: embedding_object
|
|
|
|
.set()
|
|
|
|
.unwrap_or(embedder_options.embedding_object),
|
|
|
|
input_type: input_type.set().unwrap_or(embedder_options.input_type),
|
2024-03-27 11:51:04 +01:00
|
|
|
distribution: distribution.set(),
|
2024-03-25 10:05:38 +01:00
|
|
|
})
|
|
|
|
}
|
2023-12-20 17:08:32 +01:00
|
|
|
}
|
|
|
|
}
|
2023-12-12 21:19:48 +01:00
|
|
|
|
2023-12-20 17:08:32 +01:00
|
|
|
if let Setting::Set(template) = document_template {
|
|
|
|
this.prompt = PromptData { template }
|
|
|
|
}
|
2023-12-12 21:19:48 +01:00
|
|
|
|
2023-12-20 17:08:32 +01:00
|
|
|
this
|
2023-12-12 21:19:48 +01:00
|
|
|
}
|
2023-11-15 15:46:37 +01:00
|
|
|
}
|