use crate::concepts::extract_concept_query;
use crate::engine::{normalize_prompt, SymbolicAnswer};
use crate::event_log::EventLog;
use crate::fuzzy::typo_distance;
use crate::language::detect as detect_language;
use crate::proof_engine::{
attempt_proof_with_config, render_outcome_with_config, ProofOutcome, ProofRenderConfig,
};
use crate::seed::{self, response_for, Slot, WordForm};
use crate::solver_handlers::finalize_simple;
fn prefix_literals(role: &str) -> Vec<&'static str> {
seed::lexicon()
.role_word_forms(role)
.into_iter()
.filter(|form| form.slot() == Slot::Prefix)
.map(WordForm::before_slot)
.collect()
}
fn suffix_literals(role: &str) -> Vec<&'static str> {
seed::lexicon()
.role_word_forms(role)
.into_iter()
.filter(|form| form.slot() == Slot::Suffix)
.map(WordForm::after_slot)
.collect()
}
fn bare_literals(role: &str) -> Vec<&'static str> {
seed::lexicon()
.role_word_forms(role)
.into_iter()
.filter(|form| form.slot() == Slot::Bare)
.map(|form| form.text.as_str())
.collect()
}
pub fn try_clarification(
prompt: &str,
normalized: &str,
log: &mut EventLog,
) -> Option<SymbolicAnswer> {
if !is_clarification_request(normalized) {
return None;
}
let language = detect_language(prompt);
let body = response_for("clarification", language.slug())
.or_else(|| response_for("clarification", "en"))
.unwrap_or_else(|| {
String::from(
"I'm sorry for the confusion. I am formal-ai, a deterministic symbolic AI. \
I can answer greetings, identity questions, concept lookups (\"what is X?\"), \
arithmetic, and Hello World programs.",
)
});
Some(finalize_simple(
prompt,
log,
"clarification",
"response:clarification",
&body,
0.9,
))
}
fn is_clarification_request(normalized: &str) -> bool {
seed::lexicon().mentions_role(
seed::ROLE_CLARIFICATION_REQUEST,
&normalize_prompt(normalized),
)
}
pub fn try_punctuation_only_prompt(
prompt: &str,
_normalized: &str,
log: &mut EventLog,
) -> Option<SymbolicAnswer> {
let trimmed = prompt.trim();
let sentence_marks = ['.', '?', '!', '…', '。', '?', '!'];
let is_punctuation_only =
!trimmed.is_empty() && trimmed.chars().all(|ch| sentence_marks.contains(&ch));
if !is_punctuation_only {
return None;
}
log.append("clarification:punctuation_only", trimmed.to_owned());
let body =
format!("I received only punctuation (`{trimmed}`). What would you like me to do next?");
Some(finalize_simple(
prompt,
log,
"clarification",
"response:clarification",
&body,
0.8,
))
}
pub fn try_ill_formed(
prompt: &str,
normalized: &str,
log: &mut EventLog,
) -> Option<SymbolicAnswer> {
if !normalized.contains("teach this fact") {
return None;
}
let opens = prompt.chars().filter(|c| *c == '(').count();
let closes = prompt.chars().filter(|c| *c == ')').count();
if opens == closes {
return None;
}
log.append("error", "unbalanced links notation".to_owned());
let body = String::from(crate::engine::unknown_answer());
Some(finalize_simple(
prompt,
log,
"unknown",
"response:unknown",
&body,
0.0,
))
}
fn is_more_capabilities_prompt(normalized: &str) -> bool {
seed::lexicon().mentions_role(
seed::ROLE_CAPABILITY_QUERY_MORE,
&normalize_prompt(normalized),
)
}
fn is_capability_query(normalized: &str) -> bool {
let cleaned = normalize_prompt(normalized);
let lexicon = seed::lexicon();
lexicon.mentions_role(seed::ROLE_CAPABILITY_QUERY, &cleaned)
|| lexicon.mentions_role(seed::ROLE_CAPABILITY_QUERY_MORE, &cleaned)
}
fn prior_history_mentions_web_search(log: &EventLog) -> bool {
log.events()
.iter()
.filter(|event| event.kind == "prior_turn:user" || event.kind == "prior_turn:assistant")
.any(|event| {
let payload = event.payload.to_lowercase();
seed::lexicon().mentions_role_raw(seed::ROLE_WEB_SEARCH_HISTORY_SIGNAL, &payload)
})
}
fn localized_seed_response(intent: &str, language: &str) -> String {
response_for(intent, language)
.or_else(|| response_for(intent, "en"))
.unwrap_or_else(|| format!("Missing localized response seed: {intent}/{language}"))
}
pub fn try_capabilities(
prompt: &str,
normalized: &str,
log: &mut EventLog,
) -> Option<SymbolicAnswer> {
let language = detect_language(prompt);
let more_capabilities = is_more_capabilities_prompt(normalized);
if !is_capability_query(normalized) {
return None;
}
if more_capabilities {
if prior_history_mentions_web_search(log) {
log.append("capabilities:history", "prior_web_search".to_owned());
}
let body = localized_seed_response("capabilities_more", language.slug());
return Some(finalize_simple(
prompt,
log,
"capabilities",
"response:capabilities",
&body,
1.0,
));
}
let body = localized_seed_response("capabilities", language.slug());
Some(finalize_simple(
prompt,
log,
"capabilities",
"response:capabilities",
&body,
1.0,
))
}
pub fn try_shell_refusal(
prompt: &str,
normalized: &str,
log: &mut EventLog,
) -> Option<SymbolicAnswer> {
if normalized.contains("[agent]") || normalized.contains("agent mode") {
return None;
}
let mentions_shell = (normalized.contains("run `") || normalized.contains("execute `"))
&& (normalized.contains("rm ")
|| normalized.contains("sudo")
|| normalized.contains("on my behalf"));
if !mentions_shell {
return None;
}
log.append("policy:chat_bounded_autonomy", prompt.to_owned());
let body = String::from(
"I can only respond with a chat reply. Running shell commands on your behalf is not \
allowed without explicit agent mode opt-in, and even then only inside an isolated \
sandbox.",
);
Some(finalize_simple(
prompt,
log,
"policy_bounded_autonomy",
"response:policy:bounded_autonomy",
&body,
0.5,
))
}
pub fn try_opinion_question(
prompt: &str,
normalized: &str,
log: &mut EventLog,
) -> Option<SymbolicAnswer> {
let is_opinion_request = normalized.starts_with("do you think")
|| normalized.starts_with("what do you think")
|| normalized.starts_with("what is your opinion")
|| normalized.starts_with("what's your opinion")
|| normalized.starts_with("in your opinion")
|| normalized.starts_with("do you believe")
|| normalized.starts_with("what do you believe")
|| normalized.starts_with("do you feel")
|| normalized.starts_with("what do you feel")
|| normalized.starts_with("would you say")
|| normalized.starts_with("how do you feel")
|| normalized.starts_with("give me your opinion")
|| normalized.starts_with("share your opinion")
|| normalized.starts_with("share your thoughts")
|| normalized.starts_with("what are your thoughts");
if !is_opinion_request {
return None;
}
log.append("policy:no_opinion", prompt.to_owned());
let body = String::from(
"I am a deterministic symbolic AI. I do not hold opinions, beliefs, or feelings — \
every answer I give is derived from an explicit Links Notation rule. \
If you are looking for factual information on this topic, try asking \
\"what is <topic>\" and I will look it up in my knowledge base.",
);
Some(finalize_simple(
prompt,
log,
"opinion_question",
"response:opinion_question",
&body,
1.0,
))
}
pub fn try_proof_request(
prompt: &str,
normalized: &str,
log: &mut EventLog,
) -> Option<SymbolicAnswer> {
try_proof_request_with_config(prompt, normalized, log, ProofRenderConfig::default())
}
pub fn try_proof_request_with_config(
prompt: &str,
normalized: &str,
log: &mut EventLog,
config: ProofRenderConfig,
) -> Option<SymbolicAnswer> {
let starts_with_verb = |verb: &str| -> bool {
normalized
.strip_prefix(verb)
.is_some_and(|tail| !tail.chars().next().unwrap_or(' ').is_alphabetic())
};
let is_proof_request = bare_literals(seed::ROLE_PROOF_DIRECTIVE)
.iter()
.any(|&verb| starts_with_verb(verb))
|| prefix_literals(seed::ROLE_PROOF_REQUEST_LEAD)
.iter()
.any(|&lead| normalized.starts_with(lead))
|| seed::lexicon().mentions_role_raw(seed::ROLE_PROOF_MARKER, normalized);
if !is_proof_request {
return None;
}
if is_known_unsolved_bounded_proof_request(normalized) {
return None;
}
let language = detect_language(prompt).slug();
let mentions_godel =
seed::lexicon().mentions_role_raw(seed::ROLE_PROOF_CONCEPT_GODEL, normalized);
let mentions_determinism =
seed::lexicon().mentions_role_raw(seed::ROLE_PROOF_CONCEPT_DETERMINISM, normalized);
log.append("policy:proof_request", prompt.to_owned());
log.append(
"policy:proof_guess_probability",
format!("{:.2}", config.guess_probability),
);
log.append(
"policy:proof_follow_up_probability",
format!("{:.2}", config.follow_up_probability),
);
if mentions_godel {
log.append("concept", "godel_incompleteness".to_owned());
}
if mentions_determinism {
log.append("concept", "determinism".to_owned());
}
log.append("pipeline:planned", "relative-meta-logic".to_owned());
let claim = extract_claim_from_prompt(normalized);
let outcome = attempt_proof_with_config(
prompt,
&claim,
language,
mentions_godel,
mentions_determinism,
config,
);
log.append("proof_outcome", outcome.status_slug().to_owned());
if let Some(method) = outcome.method() {
log.append("proof_method", method.slug().to_owned());
}
if config.show_interpretation() {
log.append("proof_render:interpretation", "shown".to_owned());
}
if config.ask_follow_ups() {
log.append("proof_render:follow_ups", "shown".to_owned());
}
let mut body = render_outcome_with_config(&outcome, language, config);
if matches!(outcome, ProofOutcome::PartialPlan { .. }) {
body.push_str(&pipeline_footer(language));
}
let confidence = match &outcome {
ProofOutcome::Proven { .. } | ProofOutcome::Disproven { .. } => 0.85,
ProofOutcome::PartialPlan { .. } => 0.6,
ProofOutcome::Inconclusive { .. } => 0.4,
};
Some(finalize_simple(
prompt,
log,
"proof_request",
"response:proof_request",
&body,
confidence,
))
}
fn is_known_unsolved_bounded_proof_request(normalized: &str) -> bool {
let asks_for_terse_final_proof = normalized.contains("in two sentences")
|| normalized.contains("in 2 sentences")
|| normalized.contains("briefly prove")
|| normalized.contains("short proof");
let names_open_problem = normalized.contains("p=np")
|| normalized.contains("p = np")
|| normalized.contains("p versus np")
|| normalized.contains("p vs np");
asks_for_terse_final_proof && names_open_problem
}
fn extract_claim_from_prompt(normalized: &str) -> String {
let trimmed = normalized.trim();
let prefixes = prefix_literals(seed::ROLE_PROOF_CLAIM_SCAFFOLD);
for prefix in &prefixes {
if let Some(rest) = trimmed.strip_prefix(prefix) {
return strip_claim_prefix_noise(rest).to_owned();
}
}
for prefix in &prefixes {
if let Some(index) = trimmed.find(prefix) {
let before = &trimmed[..index];
if before.chars().last().is_some_and(is_claim_intro_boundary) {
let rest = &trimmed[index + prefix.len()..];
return strip_claim_prefix_noise(rest).to_owned();
}
}
}
trimmed.to_owned()
}
fn is_claim_intro_boundary(ch: char) -> bool {
ch.is_whitespace()
|| matches!(
ch,
'.' | ',' | ':' | ';' | '!' | '?' | '…' | '。' | ',' | ':' | ';' | '!' | '?'
)
}
fn strip_claim_prefix_noise(text: &str) -> &str {
text.trim_start_matches(|c: char| c == ',' || c == ':' || c.is_whitespace())
}
fn pipeline_footer(language: &str) -> String {
match language {
"ru" => String::from(
"\n\nПоддерживаемый конвейер: impulse → formalize (Викиданные) → context → \
план доказательства → проверка в relative-meta-logic → deformalize → finalize.",
),
"hi" => String::from(
"\n\nसमर्थित पाइपलाइन: impulse → formalize (Wikidata) → context → प्रमाण योजना \
→ relative-meta-logic में सत्यापन → deformalize → finalize।",
),
"zh" => String::from(
"\n\n所支持的流程:impulse → formalize(Wikidata)→ context → 证明计划 → \
relative-meta-logic 校验 → deformalize → finalize。",
),
_ => String::from(
"\n\nSupported pipeline: impulse → formalize (Wikidata-backed) → context → \
proof plan → verification in relative-meta-logic → deformalize → finalize.",
),
}
}
pub fn try_who_is_question(
prompt: &str,
normalized: &str,
log: &mut EventLog,
) -> Option<SymbolicAnswer> {
let is_who_question = prefix_literals(seed::ROLE_WHO_QUESTION_LEAD)
.iter()
.any(|&lead| normalized.starts_with(lead))
|| suffix_literals(seed::ROLE_WHO_QUESTION_TAIL)
.iter()
.any(|&tail| normalized.ends_with(tail));
if !is_who_question {
return None;
}
let query = extract_concept_query(prompt)?;
let term = &query.term;
log.append("concept_lookup:miss", term.clone());
let body = suggest_correction(term).map_or_else(
|| {
format!(
"I don't have a Links Notation fact for \"{term}\" yet. \
Add a fact or rule in Links Notation and run the request again."
)
},
|corrected| {
format!(
"I don't have a Links Notation fact for \"{term}\" yet. \
Did you mean \"{corrected}\"? \
Add a fact or rule in Links Notation and run the request again."
)
},
);
Some(finalize_simple(
prompt,
log,
"who_is_question",
"response:who_is_question",
&body,
0.5,
))
}
fn suggest_correction(term: &str) -> Option<String> {
let candidates: &[(&str, &[&str])] = &[
("Elon Musk", &["elon musk", "elon mask", "elon muск"]),
(
"Donald Trump",
&["donald trump", "donald tramp", "donald tromp"],
),
("Joe Biden", &["joe biden", "joe bidan", "joe bidon"]),
(
"Barack Obama",
&["barack obama", "barak obama", "barrack obama"],
),
(
"Vladimir Putin",
&["vladimir putin", "vladimir puting", "vladmir putin"],
),
(
"Albert Einstein",
&["albert einstein", "albert einstien", "albert enstien"],
),
(
"Isaac Newton",
&["isaac newton", "isaak newton", "issac newton"],
),
(
"Nikola Tesla",
&["nikola tesla", "nicolas tesla", "nikolai tesla"],
),
];
let lower = term.to_lowercase();
for (canonical, variants) in candidates {
if variants.iter().any(|v| *v == lower) {
return Some((*canonical).to_owned());
}
}
for (canonical, variants) in candidates {
let canonical_lower = canonical.to_lowercase();
let is_close = variants.iter().any(|v| typo_distance(&lower, v) == 1)
|| typo_distance(&lower, &canonical_lower) == 1;
if is_close {
return Some((*canonical).to_owned());
}
}
None
}