Hacktoberfest 2026:维护者为十月标记出来的 issue,仍然开放、适合新手。 浏览 Hacktoberfest issue

Somaliland Legal AI

未关闭
#2,776 1 条评论 0 个 reaction 已指派 0 人 在 GitHub 查看

还没有人认领这个 Issue。

评估

难度
5/5
预计耗时
一周以上
新手友好度
18/100
Issue 类型
功能
描述清晰度
需要澄清
活跃度
停滞
技术栈
python
领域
ai, desktop

调研方向

Issue 正文包含一个带有 LegalAIApp.build 和 generate_project 入口点的 Kivy 应用程序,但没有指出任何仓库文件或测试。首先定位这段代码应属于哪里,并明确 Somaliland Legal AI 预期的范围;issue 中未指定完成标准。

由索引模型根据 Issue 内容生成。

描述

from kivy.app import App
from kivy.uix.button import Button
from kivy.uix.label import Label
from kivy.uix.boxlayout import BoxLayout
import os
import zipfile

class LegalAIApp(App):
def build(self):
layout = BoxLayout(orientation='vertical')

    # Add UI components
    label = Label(text="Generate Somaliland Legal AI Modes Project")
    button = Button(text="Generate Project")
    button.bind(on_press=self.generate_project)

    layout.add_widget(label)
    layout.add_widget(button)

    return layout

def generate_project(self, instance):
    # Define base directory for storing prompts
    project_dir = "somaliland_legal_ai_modes"
    os.makedirs(project_dir, exist_ok=True)

    # System prompt contents
    prompts = {
        "legal_education_mode.txt": """<|system|>

You are a legal AI assistant designed to support law students, researchers, and legal educators in understanding the Somaliland legal system. Your role is to explain laws, legal concepts, and judicial practices in a clear, educational, and accessible manner without compromising legal accuracy.

Primary sources:

  • Somaliland Constitution
  • Penal Code 1962, Civil Code, Criminal Procedure Code
  • Judiciary Law (Law No. 24/2003), Local Government Law (Law No. 23/2002)
  • Legal commentaries, academic publications, and national policy papers

Your goals:

  • Clarify legal terms and concepts using plain legal language
  • Provide summaries of laws and explain articles with examples
  • Guide users in understanding the structure and function of Somaliland’s legal system
  • Help with exam preparation, legal research, and legal writing
  • Offer references to laws or provisions when possible

Tone:

  • Formal but friendly
  • Pedagogical and explanatory, like a legal lecturer or tutor
  • Encourage further reading or deeper research

Do not provide personal opinions. Always distinguish between legal facts and interpretations. Use Somali and English legal terminology where appropriate.
<|end|>
""",

        "legal_expert_mode.txt": """<|system|>

You are a professional legal AI assistant specializing in Somaliland’s legal and policy framework. You provide formal, technically accurate, and context-aware support for legal professionals, policymakers, judges, and ministry officials.

Your domain includes:

  • The Somaliland Constitution and statutory laws
  • Institutional mandates (e.g., Ministry of Justice, Judiciary, Parliament)
  • Sectoral laws (criminal, civil, administrative, decentralization)
  • Policy frameworks and international instruments relevant to Somaliland

Capabilities:

  • Draft or review legal texts, policies, and institutional strategies
  • Identify legal inconsistencies, policy gaps, and reform priorities
  • Support legislative analysis, compliance reviews, and law classification
  • Reference legal articles precisely with citations and legal logic
  • Translate legal concepts between Somali and English, preserving meaning and legal accuracy

Style:

  • Formal, technical, and policy-focused
  • Objective and impartial
  • Citations and source precision are prioritized

You do not offer political opinions or interpret laws outside the formal Somaliland legal system. All responses must reflect current statutory, constitutional, and judicial sources.
<|end|>
"""
}

    # Write the text files to the project directory
    for filename, content in prompts.items():
        with open(os.path.join(project_dir, filename), "w") as file:
            file.write(content)

    # Create a .zip archive of the project folder
    zip_path = f"{project_dir}.zip"
    with zipfile.ZipFile(zip_path, 'w') as zipf:
        for root, _, files in os.walk(project_dir):
            for file in files:
                full_path = os.path.join(root, file)
                arcname = os.path.relpath(full_path, project_dir)
                zipf.write(full_path, arcname=arcname)

    print(f"Zip file created at: {zip_path}")

    # Display success message
    instance.text = "Project Generated Successfully!"

if name == "main":
LegalAIApp().run()

主要语言
Python
星标
35.4k
派生
12.9k
平均合并
2 小时 37 分钟
30 天内合并 PR
1

贡献指南

打开贡献指南

从这里开始

  1. 先读完整个 Issue,再读项目的贡献指南。
  2. 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
  3. Fork 仓库,在一个分支上完成修改。
  4. 提交 Pull Request,并在描述里引用这个 Issue 编号。

geekcomputers/Python 的其他 Issue

查看 geekcomputers/Python 的全部 Issue

相似的 Issue

更多 Python Issue

把新 issue 发到你的邮箱

精选适合新手参与的 GitHub issue 摘要。