Thank you for considering contributing to the LLM Repository! This document provides guidelines and instructions for contributing to this project.
-
Fork the Repository: Start by forking the repository to your GitHub account.
-
Clone Your Fork: Clone your forked repository to your local machine.
git clone https://github.com/your-username/llm.git
cd llm- Create a Branch: Create a branch for your contribution.
git checkout -b feature/your-feature-nameWhen contributing new JSON-LD examples or modifying existing ones, please adhere to these guidelines:
-
Follow JSON-LD 1.1 Standards:
- Include explicit
@contextin all documents - Use absolute IRIs for identifiers
- Follow the context mapping pattern (
id→@id,type→@type)
- Include explicit
-
Use Placeholder Values:
- Use the
<<<placeholder>>>format for variable content - Provide clear and descriptive placeholder names
- Use the
-
Domain Consistency:
- Ensure new domain examples are consistent with existing patterns
- Include all required fields (id, type, name, description, etc.)
- Add appropriate research profile sections for LLM context
-
JSON Formatting:
- Use 2-space indentation
- UTF-8 encoding only
- LF (Unix-style) line endings
-
Commit Your Changes:
- Write clear, concise commit messages
- Reference relevant issues in commit messages when applicable
-
Push to Your Fork:
git push origin feature/your-feature-name- Create a Pull Request:
- Provide a clear description of the changes
- Reference any related issues
- Explain how your changes improve the repository
- All contributions will be reviewed by project maintainers
- Feedback may be provided for necessary changes
- Once approved, your contribution will be merged into the main branch
Thank you for contributing to the LLM Repository!