The hardware and bandwidth for this mirror is donated by METANET, the Webhosting and Full Service-Cloud Provider.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]metanet.ch.
AIGRA stands for Agentic Item Generation, Review, and Analysis.
AIGRA is an R package interface to a Python backend for generating, solving, reviewing, and exporting assessment items using retrieval-augmented multi-agent AI workflows.
AIGRA supports the following pipeline:
The current Python backend lives at:
"C:/Users/OMOPEKUNOLA MOSES O/AIGRA_BACKEND"devtools::load_all()
aigra_set_backend(
backend_path = "C:/Users/OMOPEKUNOLA MOSES O/AIGRA_BACKEND"
)
aigra_status()ensure_aigra_python(
backend_path = "C:/Users/OMOPEKUNOLA MOSES O/AIGRA_BACKEND"
)
aigra_python_info(
backend_path = "C:/Users/OMOPEKUNOLA MOSES O/AIGRA_BACKEND"
)items <- aigra_parse_items(
source_language = "Russian",
subject = "Physics",
exam = "Kazakhstan UNT"
)
nrow(items)
head(items)template <- aigra_template_items()
template
csv_path <- aigra_write_template_csv(
file = "C:/Users/OMOPEKUNOLA MOSES O/AIGRA_BACKEND/data/aigra_item_template.csv",
overwrite = TRUE
)
xlsx_path <- aigra_write_template_excel(
file = "C:/Users/OMOPEKUNOLA MOSES O/AIGRA_BACKEND/data/aigra_item_template.xlsx",
overwrite = TRUE
)CSV and Excel item banks should include these columns:
Required minimum columns are:
tab_items <- aigra_parse_tabular_items(
file_path = "C:/Users/OMOPEKUNOLA MOSES O/AIGRA_BACKEND/data/aigra_item_template.csv",
source_language = "English",
subject = "Physics",
exam = "Demo Item Bank"
)
nrow(tab_items)
head(tab_items)Set your provider API key first.
Sys.setenv(OPENAI_API_KEY = "your_openai_key_here")
result <- aigra_generate_items(
provider = "openai",
model = "gpt-4.1",
target_language = "English",
n_clones = 1,
max_items = 1
)
View(result)result <- aigra_generate_tabular_items(
file_path = "C:/Users/OMOPEKUNOLA MOSES O/AIGRA_BACKEND/data/aigra_item_template.csv",
provider = "openai",
model = "gpt-4.1",
source_language = "English",
target_language = "English",
subject = "Physics",
exam = "Demo Item Bank",
n_clones = 1,
max_items = 1
)
View(result)AIGRA currently supports:
Example provider keys:
Sys.setenv(OPENAI_API_KEY = "your_openai_key_here")
Sys.setenv(GEMINI_API_KEY = "your_gemini_key_here")
Sys.setenv(GROQ_API_KEY = "your_groq_key_here")
Sys.setenv(ANTHROPIC_API_KEY = "your_anthropic_key_here")aigra_list_outputs()
latest <- aigra_read_latest_output()
View(latest)aigra_print_summary()
aigra_plot_summary()
report_path <- aigra_write_report()
browseURL(report_path)AIGRA is currently a research prototype. Generated assessment items should be reviewed by subject matter experts before operational use.
These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.