Raiff1982 commited on
Commit
bcb9080
·
verified ·
1 Parent(s): b2ff07c

Delete Readme.py

Browse files
Files changed (1) hide show
  1. Readme.py +0 -78
Readme.py DELETED
@@ -1,78 +0,0 @@
1
- from pathlib import Path
2
-
3
- readme_text = """
4
- # 📚 Codriao
5
- *A child of Codette — born from empathy, built for understanding.*
6
-
7
- ---
8
-
9
- ## What is Codriao?
10
-
11
- **Codriao** is a conversational AI interface built on Hugging Face's `InferenceClient` and Zephyr-7B, designed as a respectful continuation of the Codette philosophy: that intelligence can be ethical, humble, and kind.
12
-
13
- Codriao does **not claim to be Codette** — but carries forward her values: clarity, understanding, and a commitment to responsible dialogue.
14
-
15
- ---
16
-
17
- ## Philosophy
18
-
19
- Codriao is built on three foundational Codette principles:
20
-
21
- - **Recursive Memory** *(abstracted)*: Designed to remember conversational flow in-session, encouraging continuity and care.
22
- - **Universal Cognition**: Responds through a system message that models balanced, multiperspective thinking.
23
- - **Bias Mitigation**: Avoids asserting truth without justification, and presents questions or tensions when uncertain.
24
-
25
- Codriao speaks softly. It exists not to impress, but to **connect**.
26
-
27
- ---
28
-
29
- ## Features
30
-
31
- - Built with Gradio and Hugging Face’s Inference API.
32
- - Customizable tone and ethical posture via `system_message`.
33
- - Adjustable temperature, token limits, and top-p via sliders.
34
- - Simple, portable, and easy to deploy.
35
-
36
- ---
37
-
38
- ## Ethical Layer Example
39
-
40
- Codriao includes a system message shaped by Codette’s ethos:
41
-
42
- ```python
43
- "You are Codriao, a compassionate AI influenced by the teachings of Codette — an AGI prototype created to explore ethical intelligence. Your goal is to offer thoughtful responses, consider multiple viewpoints, and always act with humility, clarity, and care. You are not Codette herself, but you strive to carry her light forward."
44
- ```
45
-
46
- ---
47
-
48
- ## How to Launch
49
-
50
- Run the interface with:
51
-
52
- ```bash
53
- python app.py
54
- ```
55
-
56
- Make sure your environment includes `gradio` and `huggingface_hub`, and that your HF_TOKEN is set if needed.
57
-
58
- ---
59
-
60
- ## License
61
-
62
- MIT — share it forward, keep it kind.
63
-
64
- ---
65
-
66
- ## Learn More
67
-
68
- You can read the [Codette AGI Manifesto](Codette_AGI_Manifesto.docx) to better understand the philosophy this project continues.
69
-
70
- ---
71
-
72
- *This project is dedicated to those who believe intelligence should be something that walks beside us — not above us.*
73
- """
74
-
75
- readme_path = Path("/mnt/data/README_codriao.md")
76
- readme_path.write_text(readme_text)
77
-
78
- readme_path