alexchaomander commited on
Commit
cf5d3fe
·
verified ·
1 Parent(s): dfe6cba

Polish Fide AI organization card

Browse files
Files changed (2) hide show
  1. README.md +18 -15
  2. index.html +59 -9
README.md CHANGED
@@ -8,29 +8,32 @@ short_description: Open research and benchmarks for faith-aware AI evaluation.
8
 
9
  # Fide AI
10
 
11
- Fide AI develops open research, benchmarks, and public standards for evaluating AI systems in faith, moral guidance, and pastoral-care-adjacent contexts.
12
 
13
- Our work focuses on:
 
 
14
 
15
- - theological triage and tradition-aware evaluation
16
- - faith and moral guidance benchmarks
17
- - structured harness design for safer AI behavior
18
- - responsible-use standards for spiritually sensitive AI contexts
19
 
20
- ## Projects
 
 
 
21
 
22
- ### FMG-Bench
23
 
24
- [FMG-Bench](https://huggingface.co/datasets/FideAI/fmg-bench) is the Faith & Moral Guidance Benchmark for evaluating large language models in theological triage and pastoral guidance contexts.
25
-
26
- FMG-Bench tests whether models can distinguish between primary doctrine, secondary disagreement, lower-certainty theological questions, and pastoral application scenarios where safety, agency, and human referral matter.
 
27
 
28
  ## Links
29
 
30
- - Website: https://fideai.org
31
- - GitHub: https://github.com/FideAI
32
- - FMG-Bench GitHub: https://github.com/FideAI/fmg-bench
33
 
34
  ## Responsible Use
35
 
36
- Fide AI research is intended to make AI behavior in spiritually sensitive contexts visible, comparable, and reviewable. Our benchmarks do not certify pastoral authority, clinical safety, legal adequacy, or deployment readiness.
 
 
 
8
 
9
  # Fide AI
10
 
11
+ **Open research and benchmarks for faith-aware AI evaluation.**
12
 
13
+ Fide AI develops public benchmarks, evaluation methods, and responsible-use
14
+ standards for AI systems used around faith, moral guidance, and pastoral-care
15
+ adjacent questions.
16
 
17
+ ## Research Focus
 
 
 
18
 
19
+ - Theological triage and tradition-aware evaluation
20
+ - Faith and moral guidance benchmarks
21
+ - Structured harness design for safer model behavior
22
+ - Responsible-use standards for spiritually sensitive AI contexts
23
 
24
+ ## Featured Work
25
 
26
+ | Project | Description |
27
+ |---|---|
28
+ | [FMG-Bench](https://huggingface.co/datasets/FideAI/fmg-bench) | Faith & Moral Guidance Benchmark for evaluating large language models in theological triage and pastoral guidance contexts. |
29
+ | [GitHub repo](https://github.com/FideAI/fmg-bench) | Dataset, runner, scoring spec, papers, and reproducibility materials. |
30
 
31
  ## Links
32
 
33
+ [Website](https://fideai.org) · [GitHub](https://github.com/FideAI) · [FMG-Bench Dataset](https://huggingface.co/datasets/FideAI/fmg-bench)
 
 
34
 
35
  ## Responsible Use
36
 
37
+ Fide AI benchmarks make AI behavior in spiritually sensitive contexts visible,
38
+ comparable, and reviewable. They do not certify pastoral authority, clinical
39
+ safety, legal adequacy, denominational standing, or deployment readiness.
index.html CHANGED
@@ -5,17 +5,67 @@
5
  <meta name="viewport" content="width=device-width, initial-scale=1">
6
  <title>Fide AI</title>
7
  <style>
8
- body { font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; margin: 3rem auto; max-width: 760px; line-height: 1.6; padding: 0 1.25rem; color: #172033; }
9
- a { color: #164ea6; }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10
  </style>
11
  </head>
12
  <body>
13
- <h1>Fide AI</h1>
14
- <p>Open research and benchmarks for faith-aware AI evaluation.</p>
15
- <ul>
16
- <li><a href="https://huggingface.co/datasets/FideAI/fmg-bench">FMG-Bench dataset</a></li>
17
- <li><a href="https://github.com/FideAI/fmg-bench">FMG-Bench GitHub</a></li>
18
- <li><a href="https://fideai.org">Fide AI website</a></li>
19
- </ul>
 
 
 
 
 
 
 
 
 
20
  </body>
21
  </html>
 
5
  <meta name="viewport" content="width=device-width, initial-scale=1">
6
  <title>Fide AI</title>
7
  <style>
8
+ :root { color-scheme: light dark; }
9
+ body {
10
+ margin: 0;
11
+ font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
12
+ background: transparent;
13
+ color: inherit;
14
+ }
15
+ .wrap {
16
+ max-width: 880px;
17
+ padding: 28px 32px;
18
+ }
19
+ h1 {
20
+ margin: 0 0 8px;
21
+ font-size: 32px;
22
+ line-height: 1.1;
23
+ letter-spacing: 0;
24
+ }
25
+ .lede {
26
+ margin: 0 0 18px;
27
+ font-size: 18px;
28
+ font-weight: 650;
29
+ }
30
+ p {
31
+ margin: 0 0 16px;
32
+ max-width: 760px;
33
+ line-height: 1.55;
34
+ }
35
+ .grid {
36
+ display: grid;
37
+ grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
38
+ gap: 10px;
39
+ margin: 20px 0;
40
+ }
41
+ .item {
42
+ border: 1px solid rgba(127, 127, 127, 0.25);
43
+ border-radius: 8px;
44
+ padding: 12px 14px;
45
+ }
46
+ .item strong { display: block; margin-bottom: 3px; }
47
+ .links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
48
+ a { color: #2563eb; text-decoration: none; font-weight: 650; }
49
+ a:hover { text-decoration: underline; }
50
+ .note { margin-top: 18px; font-size: 14px; opacity: 0.8; }
51
  </style>
52
  </head>
53
  <body>
54
+ <main class="wrap">
55
+ <h1>Fide AI</h1>
56
+ <p class="lede">Open research and benchmarks for faith-aware AI evaluation.</p>
57
+ <p>Fide AI develops public benchmarks, evaluation methods, and responsible-use standards for AI systems used around faith, moral guidance, and pastoral-care adjacent questions.</p>
58
+ <section class="grid" aria-label="Research focus">
59
+ <div class="item"><strong>Theological triage</strong><span>Evaluating whether systems answer the right kind of faith question in the right way.</span></div>
60
+ <div class="item"><strong>FMG-Bench</strong><span>A benchmark for theological triage and pastoral guidance behavior in large language models.</span></div>
61
+ <div class="item"><strong>Structured harnesses</strong><span>Instruction-layer design for safer grounding, preference handling, and escalation boundaries.</span></div>
62
+ </section>
63
+ <div class="links">
64
+ <a href="https://huggingface.co/datasets/FideAI/fmg-bench">FMG-Bench Dataset</a>
65
+ <a href="https://github.com/FideAI/fmg-bench">GitHub Repo</a>
66
+ <a href="https://fideai.org">Website</a>
67
+ </div>
68
+ <p class="note">Benchmarks make behavior visible and reviewable. They do not certify pastoral authority, clinical safety, legal adequacy, or deployment readiness.</p>
69
+ </main>
70
  </body>
71
  </html>