GO CAM Reviews
The results of this can be seen here: GO-CAM Reviews
from pydantic_ai.settings import ModelSettings
from aurelian.agents.gocam import GOCAMDependencies
from aurelian.agents.gocam.gocam_agent import gocam_reviewer_agent, gocam_review_summarizer_agent
deps = GOCAMDependencies()
/Users/cjm/Library/Caches/pypoetry/virtualenvs/aurelian-JldJeJhF-py3.11/lib/python3.11/site-packages/pydantic/_internal/_config.py:345: UserWarning: Valid config keys have changed in V2:
* 'schema_extra' has been renamed to 'json_schema_extra'
warnings.warn(message, UserWarning)
import os
cborg_api_key = os.environ.get("CBORG_CONTEXTUALIZER_API_KEY")
from pydantic_ai.providers.openai import OpenAIProvider
from pydantic_ai.models.openai import OpenAIModel
# not to be confused with GO-CAM Model
ai_model = OpenAIModel(
"anthropic/claude-sonnet",
provider=OpenAIProvider(
base_url="https://api.cborg.lbl.gov",
api_key=cborg_api_key),
)
settings = ModelSettings(
max_tokens=64000,
)
collection = deps.collection
['gocams']
qr = collection.find({}, limit=-1)
len(qr.rows)
944
from gocam.datamodel import Model
def is_causal(m: dict):
model = Model(**m)
causal_associations = []
for a in model.activities or []:
causal_associations.extend(a.causal_associations or [])
return len(causal_associations) > 2
models = [m for m in qr.rows if is_causal(m)]
len(models)
740
!mkdir -p go-cam-reviews
import nest_asyncio
nest_asyncio.apply()
import os
import asyncio
for m in models:
model = Model(**m)
title = model.title
# make safe for file name; replace ALL non-alphanumeric characters with "_"
title = "".join(c if c.isalnum() else "_" for c in title)
model_num = model.id.split(":")[-1]
fn = f"go-cam-reviews/{model_num}-{title}.md"
# if file exists, skip
if os.path.exists(fn):
print(f"File {fn} already exists, skipping.")
continue
command = f"Review {model.id}"
print(f"COMMAND: {command}")
#result = gocam_reviewer_agent.run_sync(command)
#async def my_async_function():
# r = await gocam_reviewer_agent.run(command, deps=deps)
# return r.data
try:
result = gocam_reviewer_agent.run_sync(command, deps=deps, model=ai_model, model_settings=settings)
except Exception as e:
print(f"Error: {e}")
continue
print(result.data)
with open(fn, "w") as f:
f.write(result.data)
File go-cam-reviews/56170d5200000012-kctd10_in_heart_development_PMID_24430697_.md already exists, skipping.
File go-cam-reviews/568b0f9600000284-Antibacterial_innate_immune_response_in_the_intestine_via_MAPK_cascade__C__elegans_.md already exists, skipping.
File go-cam-reviews/5745387b00001516-Canonical_glycolysis_1__Mouse_.md already exists, skipping.
File go-cam-reviews/57c82fad00000695-F13a1_and_F13b_mouse_blood_clotting.md already exists, skipping.
File go-cam-reviews/5966411600000170-Intestinal_smooth_muscle_cell_differentiation_via_foxo1a__mir145__tgfr1b__ltbp3__zeb1a__D__rerio_.md already exists, skipping.
File go-cam-reviews/59cc772c00000000-IL1beta_mediated_signaling_pathway__Human_.md already exists, skipping.
File go-cam-reviews/59dc728000000555-_Wnt_FGF_Notch_signaling_inregulation_of_HSC_specification_via_dlc__dld__fgfr4__wnt16__D__rerio_.md already exists, skipping.
File go-cam-reviews/5ae3b0f600000435-Regulation_of_sprouting_angiogenesis_via_dll4__egfl6__itgb1a__D__rerio_.md already exists, skipping.
File go-cam-reviews/5b528b1100000489-XBP_1_is_a_cell_nonautonomous_regulator_of_stress_resistance_and_longevity.md already exists, skipping.
File go-cam-reviews/5b91dbd100002057-Antifungal_innate_immune_response_in_the_hypodermis_via_MAPK_cascade__C__elegans_.md already exists, skipping.
File go-cam-reviews/5b91dbd100002241-Antifungal_innate_immune_response_in_the_hypodermis_via_transforming_growth_factor_beta_receptor_signaling_pathway__C__elegans_.md already exists, skipping.
File go-cam-reviews/5ce58dde00001215-Mouse_Aatf_antiapoptosis.md already exists, skipping.
File go-cam-reviews/5df932e000000330-Protease_activity_in_epithelial_morphogenesis_via_f2rl1_2__spint1a__st14a__D__rerio_.md already exists, skipping.
File go-cam-reviews/5e72450500004019-SARS_COV2_HOST_.md already exists, skipping.
File go-cam-reviews/5e72450500004237-SARS_COV2_cycle.md already exists, skipping.
File go-cam-reviews/5ee8120100000524-SP_N4BP3on_MAVS.md already exists, skipping.
File go-cam-reviews/5ee8120100001898-Migrasome_signaling_involved_in_organ_morphogenesis_via_cxcl12a__cxcr4b__tspan4a__tspan7__D__rerio_.md already exists, skipping.
File go-cam-reviews/5ee8120100002841-Inflammatory_signaling_involved_in_regulation_of_hematopoietic_stem_cell_differentiation_via_notch1a__tnfa__tnfrsf1b__jag1a__D_rerio_.md already exists, skipping.
File go-cam-reviews/5f46c3b700001031-MYD88_dependent_TLR4_signaling_pathway_leading_to_NF_kappa_B_activation__Human_.md already exists, skipping.
File go-cam-reviews/5f46c3b700001407-TBK1_activation_via_TRAF3_autoubiquitination__Human_.md already exists, skipping.
File go-cam-reviews/5f46c3b700001570-SPModule_TBK1_IRF3.md already exists, skipping.
File go-cam-reviews/5f46c3b700002102-SPModule_TIRAP_MYDDOSOME.md already exists, skipping.
File go-cam-reviews/5f46c3b700002685-IL6_sIL6R_Trans_signaling_pathway__Human_.md already exists, skipping.
File go-cam-reviews/5f46c3b700003802-dGMP_catabolic_process_to_allantoin__Mouse_.md already exists, skipping.
File go-cam-reviews/5f46c3b700003884-AMP_catabolic_process_to_allantoin__Mouse_.md already exists, skipping.
File go-cam-reviews/5fa76ad400000018-AMP_catabolic_process_2__Mouse_.md already exists, skipping.
File go-cam-reviews/5fa76ad400000110-GMP_catabolic_process_to_allantoin__Mouse_.md already exists, skipping.
File go-cam-reviews/5fa76ad400000265-dAMP_catabolic_process_to_allantoin__Mouse_.md already exists, skipping.
File go-cam-reviews/5fa76ad400000374-IMP_catabolic_process_to_allantoin__Mouse_.md already exists, skipping.
File go-cam-reviews/5fadbcf000000317-Fzd3_function_in_Cranial_neural_crest_cells.md already exists, skipping.
File go-cam-reviews/5fadbcf000000480-UMP_catabolic_process__Mouse_.md already exists, skipping.
File go-cam-reviews/5fadbcf000000868-dUMP_catabolic_process__Mouse_.md already exists, skipping.
File go-cam-reviews/5fadbcf000000942-dTMP_catabolic_process__Mouse_.md already exists, skipping.
File go-cam-reviews/5fadbcf000001101-SPModule_IFIH1_MAVS.md already exists, skipping.
File go-cam-reviews/5fadbcf000001646-SP_SIK2_actvity_on_P300.md already exists, skipping.
File go-cam-reviews/5fadbcf000001962-T_helper_17_cell_lineage_commitment_by_IL6_cluster__Human_.md already exists, skipping.
File go-cam-reviews/5fadbcf000002042-CMP_catabolic_process__Mouse_.md already exists, skipping.
File go-cam-reviews/5fadbcf000002129-Sphingomyelin_phosphodiesterase_activity_involved_in_viral_entry__Human_Sars_Cov_2_.md already exists, skipping.
File go-cam-reviews/5fadbcf000002236-dCMP_catabolic_process__Mouse_.md already exists, skipping.
File go-cam-reviews/5fb9cc0600000156-circadian_rhythm_and_hematopoiesis_via_ezh2__per1b__cry1a_etc___D__rerio_.md already exists, skipping.
File go-cam-reviews/5fb9cc0600000627-Regulation_of_macrophage_differntiation_via_irf2bp2b__cebpa__spi1b__D__rerio_.md already exists, skipping.
File go-cam-reviews/5fb9cc0600000727-Triacyl_lipopetide_activation_of_TLR1_TLR2_complex__Human_.md already exists, skipping.
File go-cam-reviews/5fce9b7300000367-BMP2_SMAD_signaling_mouse.md already exists, skipping.
File go-cam-reviews/5fce9b7300000434-BMP2_MAPK_signaling_mouse.md already exists, skipping.
File go-cam-reviews/5fce9b7300001590-SPModule_PGLYRP1_HSP701A.md already exists, skipping.
File go-cam-reviews/5fce9b7300001616-SPModule_PGRP1_S100A4.md already exists, skipping.
File go-cam-reviews/5fce9b7300001742-Strap_in_alternative_splicing_mouse.md already exists, skipping.
File go-cam-reviews/5fce9b7300002336-SPModule_TREM1_DAP12.md already exists, skipping.
COMMAND: Review gomodel:5fce9b7300002436
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/600ced8500002343-BMP9_signaling_pathway__Human_.md already exists, skipping.
File go-cam-reviews/60418ffa00000327-Xanthine_catabolic_process__Mouse_.md already exists, skipping.
File go-cam-reviews/60418ffa00000414-Adenosine_catabolic_process__Mouse_.md already exists, skipping.
File go-cam-reviews/60418ffa00000811-Inosine_catabolic_process__Mouse_.md already exists, skipping.
File go-cam-reviews/60418ffa00001019-NLRP3_inflammasome_in_pyroptosis_via_nlrp3__caspa__caspb_etc___D__rerio_.md already exists, skipping.
File go-cam-reviews/60418ffa00001124-Hypoxanthine_catabolic_process__Mouse_.md already exists, skipping.
File go-cam-reviews/60418ffa00001200-Guanine_catabolic_process__Mouse_.md already exists, skipping.
File go-cam-reviews/60418ffa00001258-Deoxyadenosine_catabolic_process__Mouse_.md already exists, skipping.
File go-cam-reviews/60418ffa00001536-Deoxyguanosine_catabolic_process__Mouse_.md already exists, skipping.
File go-cam-reviews/60418ffa00001643-Deoxyinosine_catabolic_process__Mouse_.md already exists, skipping.
File go-cam-reviews/6086f4f200000223-canonical_Wnt_signaling_pathway_via_wg_fz2__D_mel_.md already exists, skipping.
File go-cam-reviews/60897d8500000494-IMP_salvage__Mouse_.md already exists, skipping.
File go-cam-reviews/60897d8500000531-AMP_salvage__Mouse_.md already exists, skipping.
File go-cam-reviews/60ad85f700000058-Atf2_mouse.md already exists, skipping.
File go-cam-reviews/60ad85f700000110-receptor_signaling_pathway_via_JAK_STAT_via_upd2_dome__D_mel_.md already exists, skipping.
File go-cam-reviews/60ad85f700000189-BMP_signaling_pathway_via_dpp_tkv_put__D_mel_.md already exists, skipping.
File go-cam-reviews/60ad85f700000259-activin_receptor_signaling_pathway_via_Actbeta_babo_put__D_mel_.md already exists, skipping.
File go-cam-reviews/60ad85f700000309-Notch_signaling_pathway_via_N_Dl__D_mel_.md already exists, skipping.
File go-cam-reviews/60ad85f700000612-TRIM47_activity_on_ILF3.md already exists, skipping.
File go-cam-reviews/60ad85f700001873-epidermal_growth_factor_receptor_signaling_pathway_via_spi_Egfr__D_mel_.md already exists, skipping.
File go-cam-reviews/60ad85f700002694-_de_novo__AMP_biosynthetic_process__Mouse_.md already exists, skipping.
File go-cam-reviews/60ad85f700002947-_de_novo__IMP_biosynthetic_process__Mouse_.md already exists, skipping.
File go-cam-reviews/60ad85f700003015-_de_novo__GMP_biosynthetic_process__Mouse_.md already exists, skipping.
File go-cam-reviews/60ad85f700003288-_de_novo__UMP_biosynthetic_process__Mouse_.md already exists, skipping.
File go-cam-reviews/60d5209a00000233-tumor_necrosis_factor_mediated_signaling_pathway_via_grnd_egr__D_mel_.md already exists, skipping.
File go-cam-reviews/60d5209a00000521-torso_signaling_pathway__D_mel_.md already exists, skipping.
File go-cam-reviews/60d5209a00001406-_de_novo__XMP_biosynthetic_process__Mouse_.md already exists, skipping.
File go-cam-reviews/60e7989d00000165-dTMP_biosynthetic_process1A__Mouse_.md already exists, skipping.
File go-cam-reviews/60e7989d00000281-UDP_biosynthetic_process__Mouse_.md already exists, skipping.
File go-cam-reviews/60e7989d00001485-Tetrahydrofolate_interconversion_1a__Mouse_.md already exists, skipping.
File go-cam-reviews/60ff660000000882-GMP_salvage_2a__from_adenosine__Mouse_.md already exists, skipping.
File go-cam-reviews/60ff660000000897-GMP_salvage_2b__from_adenosine__Mouse_.md already exists, skipping.
File go-cam-reviews/60ff660000000917-GMP_salvage_3__from_adenine__Mouse_.md already exists, skipping.
File go-cam-reviews/60ff660000001341-AMP_salvage_2b__from_adenosine__Mouse_.md already exists, skipping.
File go-cam-reviews/61283a3000000217-cobalamin_metabolic_process_1__adenosylation_of_cobalamin__Mouse_.md already exists, skipping.
File go-cam-reviews/613aae0000000011-SP_ANN_SEC14L1.md already exists, skipping.
File go-cam-reviews/613aae0000000040-cGAS_Sting_pathway__Drosophila_.md already exists, skipping.
COMMAND: Review gomodel:613aae0000000061
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:613aae0000000338
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/613aae0000000341-cobalamin_transport_2__distribution_to_tissues__Mouse_.md already exists, skipping.
File go-cam-reviews/613aae0000000500-cobalamin_metabolic_process_3__methylation_of_cobalamin__Mouse_.md already exists, skipping.
File go-cam-reviews/613aae0000000579-SP_ANN_TPPP.md already exists, skipping.
File go-cam-reviews/613aae0000000813-Liver_apoptosis_regulation_by_CASP6__Human_.md already exists, skipping.
File go-cam-reviews/613aae0000000885-SP_ANN_PTPRM.md already exists, skipping.
File go-cam-reviews/613aae0000001005-SP_ANN_RECQL5.md already exists, skipping.
File go-cam-reviews/617b481400000389-KAT5_regulation_of_the_cytoskeleton_by_acetylation_of_proteins__Human_.md already exists, skipping.
COMMAND: Review gomodel:617b481400000460
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/617b481400000521-KAT5_involvement_in_nucleotide_excision_repair__Human_.md already exists, skipping.
COMMAND: Review gomodel:617b481400000559
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:617b481400000672
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/617b481400000793-KAT5_autoacetylation_and_deacetylation_by_HDAC3_and_SIRT1__Human_.md already exists, skipping.
File go-cam-reviews/617b481400000995-Epidermal_growth_factor_receptor_signaling_pathway_1__Mouse_.md already exists, skipping.
File go-cam-reviews/617b481400003575-SP_RNF169.md already exists, skipping.
File go-cam-reviews/6197061700000593-ERBB2_EGFR_signaling_pathway_1__Mouse_.md already exists, skipping.
File go-cam-reviews/6197061700001485-Silencing_of_fetal_hemoglobin__by_ZNF410__Human_.md already exists, skipping.
File go-cam-reviews/6197061700001622-Epidermal_growth_factor_receptor_signaling_pathway_2__Mouse_.md already exists, skipping.
File go-cam-reviews/6197061700001643-Epidermal_growth_factor_receptor_signaling_pathway_3__Mouse__.md already exists, skipping.
File go-cam-reviews/6197061700002226-ERBB2_ERBB4_signaling_pathway_2__Mouse__.md already exists, skipping.
File go-cam-reviews/6197061700002397-Fatty_acid_transport_by_CD36_via_LYN_mediated_endocytosis__Human_.md already exists, skipping.
File go-cam-reviews/61b2b68300000000-NLRP6_inflammasome__Human_.md already exists, skipping.
File go-cam-reviews/61b2b68300000203-ERBB2_ERBB4_signaling_pathway_3__Mouse__.md already exists, skipping.
File go-cam-reviews/61b2b68300000617-ERBB2_ERBB3_receptor_signaling_pathway_involved_in_myelination_1__Mouse_.md already exists, skipping.
File go-cam-reviews/61e0e55600000239-Epidermal_growth_factor_receptor_signaling_pathway_10__Mouse__.md already exists, skipping.
File go-cam-reviews/61e0e55600000407-SP_GADD34__PPP1CA.md already exists, skipping.
File go-cam-reviews/61e0e55600000430-Epidermal_growth_factor_receptor_signaling_pathway_11__Mouse_.md already exists, skipping.
File go-cam-reviews/61e0e55600000624-Cyclin_D_ubiquitination_and_degradation_by_AMBRA1__Human_.md already exists, skipping.
File go-cam-reviews/61e0e55600001225-Gluconeogenesis_1__Mouse_.md already exists, skipping.
File go-cam-reviews/61e0e55600001295-NLRP1_inflammasome_leading_to_pyroptosis__Human_.md already exists, skipping.
File go-cam-reviews/61e0e55600001659-Granzyme_mediated__GZMB__activation_of_pyroptosis__GSDME___Human_.md already exists, skipping.
File go-cam-reviews/61e0e55600002253-Activation_of_ALK_and_LTK_by_ALKAL1_and_ALKAL2_cytokines__Human_.md already exists, skipping.
COMMAND: Review gomodel:61f34dd300000787
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/61f34dd300000863-PKM2_acetylation_by_EP300_and_deacetylation_by_SIRT6_leading_to_conversion_into_a_protein_kinase__Human_.md already exists, skipping.
File go-cam-reviews/61f34dd300000981-Regulation_of_gluconeogenesis_by_SIRT6__FOXO1_and_KAT2A_GCN5__Human_.md already exists, skipping.
File go-cam-reviews/61f34dd300001044-Yeast_ergosterol.md already exists, skipping.
File go-cam-reviews/6205c24300000050-SIRT6_inactivation_by_lncPRESS1_RNA__Human_.md already exists, skipping.
File go-cam-reviews/6205c24300000330-Microtubule_polyglutamylation_regulation__Human_.md already exists, skipping.
File go-cam-reviews/6205c24300000880-Regulation_of_cholesterol_biosynthesis_by_SREBP__SREBF1_and_SREBF2__and_retention_by_the_SREBP_SCAP_complex__Human_.md already exists, skipping.
File go-cam-reviews/6205c24300001663-IL2_signaling_pathway__Human_.md already exists, skipping.
File go-cam-reviews/62183af000000536-DNA_damage_sensor_activity_of_SIRT6_and_its_regulation_by_SIRT1__Human_.md already exists, skipping.
File go-cam-reviews/622aace900000443-Fructose_catabolic_process__Mouse_.md already exists, skipping.
COMMAND: Review gomodel:622aace900000522
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/622aace900000790-Galactose_catabolic_process_via_UDP_galactose.md already exists, skipping.
File go-cam-reviews/622aace900000962-Pentose_phosphate_shunt_1__Mouse_.md already exists, skipping.
File go-cam-reviews/622aace900001389-Pentose_phosphate_shunt_2__Mouse_.md already exists, skipping.
File go-cam-reviews/623d156d00000029-Glycogen_biosynthetic_process__Mouse_.md already exists, skipping.
File go-cam-reviews/623d156d00000290-IL4_mediated_signaling_pathway__human_.md already exists, skipping.
File go-cam-reviews/623d156d00000340-IL3_mediated_signaling_pathway__Human_.md already exists, skipping.
File go-cam-reviews/623d156d00000673-IL5_mediated_signaling_pathway__Human_.md already exists, skipping.
File go-cam-reviews/623d156d00000699-Glycogen_catabolic_process_1__Mouse_.md already exists, skipping.
File go-cam-reviews/623d156d00000752-Glycogen_catabolic_process_2__Mouse_.md already exists, skipping.
COMMAND: Review gomodel:623d156d00000817
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/623d156d00000939-Glycogen_catabolic_process_3__Mouse_.md already exists, skipping.
File go-cam-reviews/6246724f00000078-Glucuronate_catabolic_process_to_xylulose_5_phosphate__Mouse_.md already exists, skipping.
File go-cam-reviews/6246724f00000283-Regulation_of_the_mTORC1_signaling_via_ubiquitination_and_deubiquitnation_of_SESN2_by_RNF167_and_STAMBPL1__Human_.md already exists, skipping.
COMMAND: Review gomodel:6246724f00000369
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/6246724f00000549-Renin_angiotensin_pathway__Human_.md already exists, skipping.
File go-cam-reviews/6246724f00000675-IL7_mediated_signaling_pathway__Human_.md already exists, skipping.
File go-cam-reviews/6246724f00000763-TSLP_mediated_signaling_pathway__Human_.md already exists, skipping.
File go-cam-reviews/6246724f00001645-hyaluronan_biosynthetic_process__Mouse_.md already exists, skipping.
File go-cam-reviews/6246724f00001700-Hyaluronan_catabolic_process__Mouse_.md already exists, skipping.
File go-cam-reviews/6258b8f300000188-Chondroitin_sulfate_biosynthetic_process_1__chondroitin_6_sulfate_proteoglycans__Mouse_.md already exists, skipping.
File go-cam-reviews/6258b8f300000398-Heparan_sulfate_proteoglycan_biosynthetic_process__Mouse_.md already exists, skipping.
File go-cam-reviews/626b20c100000025-IL9_mediated_signaling_pathway__Human_.md already exists, skipping.
File go-cam-reviews/626b20c100000185-Glycosaminoglycan_biosynthetic_process__linker_formation__Mouse_.md already exists, skipping.
File go-cam-reviews/626b20c100000443-Regulation_of_gluconeogenesis_by_TOX4__Mouse_.md already exists, skipping.
File go-cam-reviews/626b20c100000681-IL10_mediated_signaling_pathway__Human_.md already exists, skipping.
COMMAND: Review gomodel:626b20c100001212
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/627d95ee00000024-IL12_mediated_signaling_pathway__Human_.md already exists, skipping.
File go-cam-reviews/627d95ee00000044-3__phosphoadenosine_5__phosphosulfate_biosynthetic_process__Mouse_.md already exists, skipping.
File go-cam-reviews/627d95ee00000275-Heparan_sulfate_proteoglycan_catabolic_process__Mouse_.md already exists, skipping.
File go-cam-reviews/627d95ee00000472-IL15_signaling_pathway__Human_.md already exists, skipping.
File go-cam-reviews/627d95ee00000757-Regulation_of_CGAS_activity_by_ZDHHC18__Human_.md already exists, skipping.
COMMAND: Review gomodel:627d95ee00000775
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/627d95ee00000909-Regulation_of_CGAS_by_PCBP2__Human_.md already exists, skipping.
File go-cam-reviews/627d95ee00000955-Chondroitin_sulfate_catabolic_process__Mouse_.md already exists, skipping.
COMMAND: Review gomodel:627d95ee00001139
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:627d95ee00001242
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/627d95ee00001405-Il17A_mediated_signaling_pathway__Human_.md already exists, skipping.
File go-cam-reviews/627d95ee00001943-Activation_of_PARP1_activity_by_HPF1_during_DNA_repair__Human_.md already exists, skipping.
File go-cam-reviews/627d95ee00001988-Regulation_of_Parp1_activity_by_Cgas__Setd7_and_Riox1__Mouse_.md already exists, skipping.
File go-cam-reviews/627d95ee00002030-Activation_of_PARP2_activity_by_HPF1_during_DNA_repair__Human_.md already exists, skipping.
COMMAND: Review gomodel:627d95ee00002067
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/627d95ee00002159-Xenopus_trio__and_cdh11_in_development_and_neural_cell_migration_.md already exists, skipping.
File go-cam-reviews/62900b6400000022-Mono_ADP_ribosylation_of_ribosome_subunits_by_PARP16__Human_.md already exists, skipping.
File go-cam-reviews/62900b6400000076-Histone_poly_ADP_ribosylation_of_histone_H2B_at_Glu_35_by_Parp1_that_prevents_phosphorylation_at_of_histone_H2B_at_Ser_36_by_Prkaa1__Mouse_.md already exists, skipping.
File go-cam-reviews/62900b6400000500-Regulation_of_ACLY_by_acetylation_by_PCAF_KAT2B_and_ubiquitination__by_UBR4___Human_.md already exists, skipping.
COMMAND: Review gomodel:62900b6400001385
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/62900b6400001630-PTEN_in_excitatory_hippocampal_synapse_long_term_depression__Human_.md already exists, skipping.
File go-cam-reviews/62900b6400002267-Casp7_activates_Smpd1_to_repair_Gasdermin_pores_in_intestinal_epithelial_cells___Mouse_.md already exists, skipping.
File go-cam-reviews/62900b6400002353-Casp7_activates_Smpd1_to_repair_perforin_pores_in_hepatocytes__Mouse_.md already exists, skipping.
File go-cam-reviews/62900b6400002552-Cobalamin_transport__into_enterocytes__Mouse_.md already exists, skipping.
File go-cam-reviews/62900b6400002879-Dermatan_sulfate_catabolic_process__Mouse_.md already exists, skipping.
File go-cam-reviews/62b4ffe300000010-CASP7_activates_SMPD1_to_repair_Gasdermin_pores_in_intestinal_epithelial_cells__Human_.md already exists, skipping.
File go-cam-reviews/62b4ffe300000067-Poxvirus_OPG044_inhibition_of_interferon_beta_induction__Human_Poxvirus_.md already exists, skipping.
File go-cam-reviews/62b4ffe300000081-CASP7_activates_SMPD1_to_repair_perforin_pores_in_hepatocytes__Human_.md already exists, skipping.
File go-cam-reviews/62b4ffe300000240-Perforin_maturation_leading_to_granzyme_mediated_programmed_cell_death_signaling_pathway__Mouse_.md already exists, skipping.
File go-cam-reviews/62b4ffe300000241-Poxvirus_CRMB_inhibition_of_TNF_signaling_pathway__Human_Poxvirus__.md already exists, skipping.
File go-cam-reviews/62b4ffe300000335-Perforin_maturation_leading_to_granzyme_mediated_programmed_cell_death_signaling_pathway__Human_.md already exists, skipping.
COMMAND: Review gomodel:62b4ffe300000418
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/62b4ffe300000504-Poxvirus_OPG065_inhibition_of_ZBP1_mediated_necroptosis__Human_Poxvirus__.md already exists, skipping.
File go-cam-reviews/62b4ffe300000717-Poxvirus_OPG025_inhibition_of_antiviral_IFITs__Human_Poxvirus__.md already exists, skipping.
File go-cam-reviews/62b4ffe300000784-Involvement_of_CASP7_in_apoptosis__its_activation_by_initiator_caspases__CASP8__CASP9_and_CASP10___and_regulation_by_XIAP_and_PAK2__Human_.md already exists, skipping.
File go-cam-reviews/62b4ffe300000906-Poxvirus_OPG065_inhibition_of_ISG15_conjugation__Human_Poxvirus__.md already exists, skipping.
COMMAND: Review gomodel:62b4ffe300001804
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/62b4ffe300001832-Activation_of_CASP7_by_CASP1_in_response_to_lipopolysaccharide__leading_to_cleavage_and_degradation_of_PARP1_by_CASP7__Human_.md already exists, skipping.
File go-cam-reviews/62b4ffe300002385-Arginine_ADP_riboxanation_of_CASP4__by__by_S_flexneri_OspC3_that_blocks_CASP4_activity_and_pyroptosis__Human_.md already exists, skipping.
File go-cam-reviews/62b4ffe300002470-Ochratoxin_A_biosynthesis___catabolism__A__niger_.md already exists, skipping.
File go-cam-reviews/62b4ffe300002512-Ochratoxin_biosynthesis_in_A__carbonarius.md already exists, skipping.
File go-cam-reviews/62b4ffe300002544-Ilicicolin_H__Neonectria_sp__strain_DH2_.md already exists, skipping.
File go-cam-reviews/62b4ffe300002753-Poxvirus_OPG106_inhibition_of_interferon_gamma_signaling__Human_Poxvirus__.md already exists, skipping.
File go-cam-reviews/62b4ffe300002814-Poxvirus_OPG204_inhibition_of_type_I_interferon_signaling___Human_Poxvirus__.md already exists, skipping.
File go-cam-reviews/62b4ffe300002896-Poxvirus_OPG043_inhibition_of_host_PKR__Human_Poxvirus__.md already exists, skipping.
File go-cam-reviews/62b4ffe300002959-Aflaroxin__Aspergillus_parasiticus_.md already exists, skipping.
File go-cam-reviews/62b4ffe300003074-Poxvirus_OPG029_inhibition_of_host_TBK1_adaptor_TANK__Human_Poxvirus__.md already exists, skipping.
File go-cam-reviews/62b4ffe300003248-Poxvirus_OPG029_inhibition_of_host_HDAC4_STAT2__Human_Poxvirus__.md already exists, skipping.
COMMAND: Review gomodel:62b4ffe300003321
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/62b4ffe300003382-Poxvirus_OPG038_inhibition_of_host_CD80_CD86__Human_Poxvirus__.md already exists, skipping.
File go-cam-reviews/62b4ffe300003618-Poxvirus_OPG045_inhibition_of_host_BAK_mediated_apoptosis__Human_Poxvirus__.md already exists, skipping.
File go-cam-reviews/62b4ffe300003655-Zearalenone_biosynthesis__Gibberella_zeae_.md already exists, skipping.
File go-cam-reviews/62b4ffe300003679-Poxvirus_OPG200_inhibition_of_host_IKBKE_mediated_NF_Kappa_B__Human_Poxvirus__.md already exists, skipping.
File go-cam-reviews/62b4ffe300003747-_Response_to_IFN_beta__leading_to_JAK_STAT_activation__Human_.md already exists, skipping.
File go-cam-reviews/62b4ffe300004209-Terrequinone_A_biosynthesis__Emericella_nidulans_.md already exists, skipping.
File go-cam-reviews/62b4ffe300004362-Poxvirus_OPG193_interferon_gamma_decoy_receptor__Human_Poxvirus__.md already exists, skipping.
COMMAND: Review gomodel:62b4ffe300004489
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/62b4ffe300004525-Regulation_of_the_JAK_STAT_pathway_by_calmodulin_in_response_to_interferon_beta__Human_.md already exists, skipping.
COMMAND: Review gomodel:62b4ffe300004589
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/62b4ffe300004795-Insulin_receptor_signaling_pathway_1__Mouse_.md already exists, skipping.
File go-cam-reviews/62b4ffe300004953-Arginine_ADP_riboxanation_of_CASP3_by_by_C_violaceum_CopC_that_blocks_CASP3_activity__subsequent_apoptosis_and_pyroptosis__Human__.md already exists, skipping.
File go-cam-reviews/62b4ffe300005014-Poxvirus_OPG176_inhibition_of_hostTLR4_signaling__Human_Poxvirus__.md already exists, skipping.
File go-cam-reviews/62b4ffe300005096-Poxvirus_OPG022_inhibition_of_host_IL18_signaling_pathway__Human_Poxvirus__.md already exists, skipping.
File go-cam-reviews/62b4ffe300005181-Poxvirus_OPG003_inhibition_of_host_NF_kappa_B_pathway_via_NFKB1__Human_Poxvirus__.md already exists, skipping.
COMMAND: Review gomodel:62b4ffe300005283
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/62b4ffe300005342-Poxvirus_OPG179_inhibition_of_host_NF_kappa_B_via_BTRC__Human_Poxvirus__.md already exists, skipping.
File go-cam-reviews/62b4ffe300005389-Poxvirus_OPG184_inhibition_of_host_NF_kappa_B_via_KPNA2__Human_Poxvirus__.md already exists, skipping.
File go-cam-reviews/62b4ffe300005506-Poxvirus_OPG182_inhibition_of_host_NF_kappa_B_via_IRAK2__Human_Poxvirus__.md already exists, skipping.
File go-cam-reviews/62b4ffe300005623-HHV1_US3_inhibition_of_host_TCR_signaling_via_LAT__Human_Herpesvirus__.md already exists, skipping.
File go-cam-reviews/62b4ffe300005697-HHV1_US3_inhibition_of_host_RIG_I_signaling__Human_Herpesvirus__.md already exists, skipping.
File go-cam-reviews/62b4ffe300005953-HHV1_US3_inhibition_of_host_NF_kappa_B_signaling_via_RELA__Human_Herpesvirus__.md already exists, skipping.
File go-cam-reviews/62b4ffe300006001-HHV1_US3_inhibition_of_host_IRF3__Human_Herpesvirus__.md already exists, skipping.
File go-cam-reviews/62b4ffe300006376-HHV1_UL37_inhibition_of_host_RIG_I_signaling_via_RIG_I_deamidation__Human_Herpesvirus__.md already exists, skipping.
File go-cam-reviews/62b4ffe300006474-B_cell_receptor_signaling_pathway_1__Mouse_.md already exists, skipping.
File go-cam-reviews/62b4ffe300006559-Insulin_receptor_signaling_pathway_2__Mouse__.md already exists, skipping.
File go-cam-reviews/62d0afa500000132-Gluconeogenesis_2__Mouse_.md already exists, skipping.
File go-cam-reviews/62d0afa500000298-Gluconeogenesis_3__Mouse_.md already exists, skipping.
File go-cam-reviews/62d0afa500000472-Insulin_receptor_signalling_pathway_3__Mouse_.md already exists, skipping.
File go-cam-reviews/62d0afa500001077-Insulin_like_growth_factor_receptor_signaling_pathway_1__Mouse_.md already exists, skipping.
File go-cam-reviews/62e3212700000469-Insulin_like_growth_factor_receptor_signaling_pathway_2__Mouse__.md already exists, skipping.
File go-cam-reviews/62e3212700000746-Insulin_like_growth_factor_receptor_signaling_pathway_3__Mouse_.md already exists, skipping.
COMMAND: Review gomodel:62e3212700001602
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/62e3212700001890-Regulation_of_energy_homeostasis_by_OTUD3__Human_.md already exists, skipping.
File go-cam-reviews/62e3212700001956-Activation_of_the_NLRP1_inflammasome_by_isoform_ZAKalpha_of_MAP3K20_in_response_to_UV_B_irradiation_and_ribotoxic_stress__Human_.md already exists, skipping.
File go-cam-reviews/62f58d8800000011-Inactivation_of_GSDMD_by_Protease_3C_from__Human_enterovirus_71__EV71___Human_.md already exists, skipping.
File go-cam-reviews/62f58d8800000378-Insulin_like_growth_factor_receptor_signaling_pathway_4__Mouse_.md already exists, skipping.
COMMAND: Review gomodel:62f58d8800000464
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:62f58d8800000934
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:62f58d8800001022
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/62f58d8800001119-Insulin_receptor_recycling__Mouse_.md already exists, skipping.
File go-cam-reviews/62f58d8800001316-PIV5_V_inhibition_of_STAT1_via_DDB1_CUL4A__Human_Paramyxovirus__.md already exists, skipping.
COMMAND: Review gomodel:62f58d8800001368
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/62f58d8800001500-Insulin_processing_1__Mouse_.md already exists, skipping.
File go-cam-reviews/62f58d8800001680-Gut_Microbiota_tryptophan_metabolism__Regulation_of_intestinal_epithelial_cell_homesotasis_by_Indole_AhR__Human_E_coli_.md already exists, skipping.
File go-cam-reviews/62f58d8800002184-positive_regulation_of_insulin_secretion_involved_in_cellular_response_to_glucose_stimulus__Mouse_.md already exists, skipping.
File go-cam-reviews/62f58d8800002367-Protein_import_into_peroxisomes__of_PTS1_containing_proteins_by_the_PEX5_receptor__and_recycling_of_the_PEX5_receptor__S_cerevisiae_.md already exists, skipping.
File go-cam-reviews/62f58d8800002485-Protein_import_into_peroxisomes__of_PTS1_containing_proteins_by_the_PEX5_receptor__and_recycling_of_the_PEX5_receptor__Human_.md already exists, skipping.
File go-cam-reviews/62f58d8800003012-Positive_regulation_of_insulin_secretion_2___Mouse_.md already exists, skipping.
File go-cam-reviews/62f58d8800003277-Import_of_ATM_into_peroxisomes_y_in_response_to_reactive_oxygen_species_via_the_PEX5_dependent__import_pathway__leading_to_PEX5_ubiquitination_and_pexophagy__Human_.md already exists, skipping.
File go-cam-reviews/62f58d8800003536-Protein_import_into_peroxisomes__of_PTS2_containing_proteins_by_the_PEX7_receptor_and_isoform_PEX5L_of_PEX5__Human_.md already exists, skipping.
File go-cam-reviews/62f58d8800003672-Positive_regulation_of_insulin_secretion_3___Mouse_.md already exists, skipping.
File go-cam-reviews/62f58d8800004064-Positive_regulation_of_insulin_secretion_4___Mouse_.md already exists, skipping.
File go-cam-reviews/62f58d8800004529-Positive_regulation_of_insulin_secretion_6__Mouse_.md already exists, skipping.
File go-cam-reviews/62f58d8800004803-Positive_regulation_of_insulin_secretion_7__Mouse_.md already exists, skipping.
COMMAND: Review gomodel:62f58d8800004946
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:62f58d8800005094
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:62f58d8800005413
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:62f58d8800005633
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:62f58d8800005854
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:62f58d8800005908
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:62f58d8800006008
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:62f58d8800006039
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:62f58d8800006739
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:62f58d8800006929
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:62f58d8800007064
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:632cf60a00000028
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/632cf60a00000169-HHV1_ICP0_modulation_of_interferon_production_via_MORC3_degradation__Human_Herpesvirus__.md already exists, skipping.
COMMAND: Review gomodel:632cf60a00000478
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/632cf60a00000788-USP20_mediated_STING_deubiquitination_leading_to_STING_stabilisation__Human_.md already exists, skipping.
File go-cam-reviews/633b013300000089-Positive_regulation_of_insulin_secretion_11___Mouse_.md already exists, skipping.
File go-cam-reviews/633b013300000306-Tricarboxylic_acid_cycle_1__Mouse_.md already exists, skipping.
COMMAND: Review gomodel:633b013300001197
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/633b013300001238-Pyruvate_catabolic_process_1__Mouse_.md already exists, skipping.
File go-cam-reviews/633b013300001469-Pyruvate_catabolic_process_2__Mouse_.md already exists, skipping.
File go-cam-reviews/633b013300001722-TRIM27_mediated_inhibition_of_starvation_induced_autophagy_via_ubiquitination_of_STK38L_and_ULK1__Human_.md already exists, skipping.
File go-cam-reviews/6348a65d00000093-USP20_inhibition_of_NF_kappa_B_signaling_via_TRAF6_deubiquitination__Human_.md already exists, skipping.
File go-cam-reviews/6348a65d00000594-Granzyme_mediated__GZMA__activation_of_pyroptosis__GSDMB_isoform_4___Human_.md already exists, skipping.
File go-cam-reviews/6348a65d00000661-Cytotoxic_T_cell_pyroptosis_mediated_by_GSDMB_isoform_1_in_response_to_infection_by_Gram_negative_bacteria_and_its_inhibition_by_S_flexneri_IpaH7_8__Human_and_S_flexneri_.md already exists, skipping.
File go-cam-reviews/6348a65d00000724-Regulation_by_IL22_and_Reg3g_of_allergic_airway_inflammation___Mouse__.md already exists, skipping.
File go-cam-reviews/6348a65d00000848-Regulation_by_IL22_and_REG3A_of_allergic_airway_inflammation___Human__.md already exists, skipping.
File go-cam-reviews/6348a65d00001191-Nociceptor_derived_Reg3g_prevents_endotoxic_death_by_targeting_kynurenine_pathway_in_microglia___Mouse_.md already exists, skipping.
File go-cam-reviews/6348a65d00001727-Negative_regulation_of_inflammatory_response_to_wounding_by_REG3A___Human_.md already exists, skipping.
File go-cam-reviews/6348a65d00002174-USP44_mediated_FOXP3_deubiquitination_leading_to_regulatory_T_cell_differentiation__Human_.md already exists, skipping.
File go-cam-reviews/6348a65d00002236-USP44_mediated_deubiquitination_of_CDC20_controlling_anaphase_initiation__Human_.md already exists, skipping.
File go-cam-reviews/6348a65d00002600-Negative_regulation_of_white_adipogenesis_by_OVOL2___Human_.md already exists, skipping.
File go-cam-reviews/6348a65d00002622-Ascorbic_acid_biosynthetic_process_1__Mouse_.md already exists, skipping.
COMMAND: Review gomodel:6348a65d00002993
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/635b1e3e00000382-Xylulose_5_Phosphate_biosynthetic_process_1__Mouse_.md already exists, skipping.
File go-cam-reviews/635b1e3e00000433-Xylulose_5_Phosphate_biosynthetic_process_2__Mouse_.md already exists, skipping.
File go-cam-reviews/635b1e3e00001811-The_NLRP3_inflammasome__Human_.md already exists, skipping.
File go-cam-reviews/635b1e3e00002003-Inhibition_of_GSDMD_mediated_pyroptosis_by_M_tuberculosis_PtpB_phosphatase_that_alters_membrane_phospholipid_composition__Human_and_M_tuberculosis_.md already exists, skipping.
File go-cam-reviews/635b1e3e00002004-Activation_of_the_NLRP3_inflammasome_by_MAPK8_JNK1_and_BRCC3__Human_.md already exists, skipping.
COMMAND: Review gomodel:635b1e3e00002360
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/636d9ce800000147-Cellular_response_to_glucagon_stimulus__Mouse_.md already exists, skipping.
File go-cam-reviews/636d9ce800001192-DCAF12_controls_MOV10_during_T_cell_activation___Human_.md already exists, skipping.
File go-cam-reviews/636d9ce800001222-DCAF12_controls_MOV10_during_spermatogeneis___Human_.md already exists, skipping.
COMMAND: Review gomodel:636d9ce800001444
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/636d9ce800002041-Positive_regulation_of_gluconeogenesis_1__Mouse_.md already exists, skipping.
File go-cam-reviews/63894f2500000740-FIP200_ubiquitination_by_TRIM21_leading_to_autophagy_inhibition__Human_.md already exists, skipping.
File go-cam-reviews/63894f2500000870-Liquid_liquid_phase_separation_of_FXR1_drives_translation_of_mRNAs_and_regulation_of_FXR1_by_ubiquitination_and_phosphorylation__Human_.md already exists, skipping.
COMMAND: Review gomodel:63894f2500001248
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:63894f2500001337
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:63894f2500001378
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/63894f2500001748-FRM1_binds_N6_methyladenosine__m6A__containing_mRNAs_and_promotes_their_nuclear_export__Human_.md already exists, skipping.
File go-cam-reviews/63894f2500001789-Fmr1_binds_N6_methyladenosine__m6A__containing_mRNAs_and_promotes_their_nuclear_export__Mouse_.md already exists, skipping.
File go-cam-reviews/63894f2500001894-ARRDC4_mediated_activation_of_MDA5_through_K63_ubiquitination_by_TRIM65__Human_.md already exists, skipping.
File go-cam-reviews/63894f2500002043-Positive_regulation_of_glycolytic_process_1__Mouse_.md already exists, skipping.
File go-cam-reviews/639bc18f00000090-Isg12a_K6_ubiquitination_by_TRIM21_leading_to_pyroptosis__Human_.md already exists, skipping.
File go-cam-reviews/639bc18f00000430-Negative_regulation_of_glycolytic_process_through_fructose_6_phosphate_2__Mouse_.md already exists, skipping.
COMMAND: Review gomodel:639bc18f00000693
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/63a86a8600000221-positive_regulation_of_transcription_from_RNA_polymerase_II_promoter_by_glucose_1__Mouse_.md already exists, skipping.
File go-cam-reviews/63a86a8600000288-positive_regulation_of_transcription_from_RNA_polymerase_II_promoter_by_glucose_2__Mouse_.md already exists, skipping.
File go-cam-reviews/63a86a8600000489-TRIM22_NT5C2_regulation_of_RIGI_via_ubiquitination__Human_.md already exists, skipping.
File go-cam-reviews/63a86a8600000805-Positive_regulation_of_transcription_from_RNA_polymerase_II_promoter_by_glucose_3__Mouse_.md already exists, skipping.
File go-cam-reviews/63a86a8600001202-DHX16_mediated_viral_RNA_recognition_and_activation_of_RIGI__Human_.md already exists, skipping.
File go-cam-reviews/63a86a8600001386-Triglyceride_biosynthetic_process_1__Mouse_.md already exists, skipping.
COMMAND: Review gomodel:63a86a8600001653
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/63a86a8600001720-The_non_canonical_inflammasome_mediated_by_Casp11_upon_lipopolysaccharide_binding__Mouse_.md already exists, skipping.
File go-cam-reviews/63a86a8600001865-Irgb10_Gm12250_mediates_disruption_of_the_pathogen_membrane__liberating_ligands_that_are_detected_by_inflammasomes___Mouse_.md already exists, skipping.
File go-cam-reviews/63c0ac2b00000008-The_AIM2_inflammasome__Human_.md already exists, skipping.
File go-cam-reviews/63c0ac2b00000088-The_AIM2_inflammasome__Mouse_.md already exists, skipping.
File go-cam-reviews/63c0ac2b00000267-IRGM_governs_the_core_autophagy_machinery_to_conduct_antimicrobial_defense__Human_.md already exists, skipping.
COMMAND: Review gomodel:63c0ac2b00000331
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/63c0ac2b00000464-Zika_virus_inhibition_of_TBK1_via_CEP63_binding_and_centrosome_disorganization__Human_Zika_virus_.md already exists, skipping.
File go-cam-reviews/63c0ac2b00000506-Degradation_of_NMNAT2_via_the_PAM__SKP1_FBXO45_MYCBP2__E3_ligase_complex__Human_.md already exists, skipping.
File go-cam-reviews/63c0ac2b00000547-Staphylococcal_HlgB_activation_of_NF_kappa_B_via_AMFR_and_TAB3__Human_Staphylococcus_Aureus_.md already exists, skipping.
COMMAND: Review gomodel:63c0ac2b00000593
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:63c0ac2b00000641
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:63c0ac2b00001143
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:63c0ac2b00001566
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:63c0ac2b00001613
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:63c0ac2b00001853
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/63d320cd00000225-Activation_of_the_AIM2_inflammasome_in_response_to_DNA_damage__Mouse_.md already exists, skipping.
File go-cam-reviews/63d320cd00000317-Activation_of_the_AIM2_inflammasome_in_neural_cells_shapes_neurodevelopment__Mouse_.md already exists, skipping.
File go-cam-reviews/63d320cd00000399-Negative_regulation_of_the_AIM2_inflammasome_by_Ifi202__Mouse_.md already exists, skipping.
File go-cam-reviews/63d320cd00001688-Response_to_ribosome_stalling_by_GCN1__RNF14_and_RNF25__leading_to_ubiquitination_and_degradation_of_EEF1A1__Human_.md already exists, skipping.
File go-cam-reviews/63e5937500000106-Activation_of_the_GCN2_mediated_signaling_by_GCN1_in_response_to_ribosome_collisions_and_inhibition_of_GCN2_by_HEL2__S_cerevisiae_.md already exists, skipping.
COMMAND: Review gomodel:63e5937500000160
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/63e5937500000215-Activation_of_the_No_Go_decay__NGD__pathway_in_response_to_ribosome_collision_by_HEL2__leading_to_ubiquitination_of_RPS7_eS7__recruitment_of_CUE2_and_mRNA_degradation__S_cerevisiae__.md already exists, skipping.
File go-cam-reviews/63e5937500000284-18S_rRNA_degradation_in_response_to_ribosome_collision_by_HEL2__leading_to_ubiquitination_of_RPS3_uS3_by_MAG2__RSP5_and_HEL2_and_rRNA_degradation__S_cerevisiae__.md already exists, skipping.
File go-cam-reviews/63e5937500000487-Negative_regulation_of_inflammatory_response_to_wounding_by_Reg3g___Mouse_.md already exists, skipping.
File go-cam-reviews/63e5937500000591-Activation_of_the_ribosome_quality_control_by_ZNF598_in_response_to_ribosome_collisions__leading_to_ubiquitination_of_RPS20_us10_and_ribosome_dissociation_by_the_RQT_complex__composed_of_ASCC2_and_ASCC3__Human__.md already exists, skipping.
File go-cam-reviews/63e5937500001029-Inhibition_of_IFNB1_translation_initiation_by_EIF4E2_in_response_to_viral_infection___Human_Sars_CoV_2_.md already exists, skipping.
File go-cam-reviews/63e5937500001279-Extraction_of_mRNA_from_stalled_ribosomes_by_the_SKI_complex__leading_to_recruitment_of_the_PELO_HBS1L_complex_that_binds_to_stalled_ribosomes__followed_by_ribosome_dissociation_by_ABCE1__Human_.md already exists, skipping.
COMMAND: Review gomodel:63f809ec00000152
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/63f809ec00000347-TRIM60_mediated_inhibition_of_NF_kappa_B_signaling_via_TAB2_SUMOylation__Human_.md already exists, skipping.
File go-cam-reviews/63f809ec00000512-Activity_of_the_RQC_complex_via_ubiquitination_and_degradation_of_incompletely_synthesized_nascent_proteins__by_NEMF_and_LTN1__following_ribosome_dissociation__Human_.md already exists, skipping.
File go-cam-reviews/63f809ec00000560-Non_canonical_activity_of_the_RQC_complex_via_CAT_tailing_by_NEMF_that_promotes_degradation_of_incompletely_synthesized_nascent_proteins_by_the_DesCEND_pathway__Human_.md already exists, skipping.
File go-cam-reviews/63f809ec00000635-Activity_of_the_RQC_complex_via_ubiquitination_and_degradation_of_incompletely_synthesized_nascent_proteins__by_RQC2_and_RKR1_LTN1__following_ribosome_dissociation__S_cerevisiae__.md already exists, skipping.
File go-cam-reviews/63f809ec00000701-tRNA_repair_and_recycling_by_ANKZF1__ELAC1_and_TRNT1_following_activity_of_the_RQC_complex_in_response_to_stalled_ribosomes__Human_.md already exists, skipping.
COMMAND: Review gomodel:63f809ec00001308
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/63f809ec00001358-ARKL1_negatively_negulates_Epstein_Barr_virus_reactivation_by_inhibiting_JUN_mediated_transcription___Human_Epstein_Barr_virus_.md already exists, skipping.
File go-cam-reviews/63f809ec00001734-TGF_beta_mediated_inhibition_of_TAF7_via_TRIM26.md already exists, skipping.
File go-cam-reviews/6413ac9800000256-MYD88_dependent_TLR4_signaling_pathway_leading_to_autophagy_activation__Human_.md already exists, skipping.
File go-cam-reviews/6413ac9800000654-MYD88_independent_TLR4_signaling_pathway_leading_to_interferon_production__Human_.md already exists, skipping.
File go-cam-reviews/641ce4dc00000050-NOD2_signaling_in_response_to_muramyl_dipeptide__MDP___leading_to_NF_kappa_B_and_MAPK_kinase_activation___Human_.md already exists, skipping.
File go-cam-reviews/641ce4dc00000214-NOD1_signaling_in_response_to_gamma_D_glutamyl_meso_diaminopimelic_acid__iE_DAP___leading_to_NF_kappa_B_and_MAP_kinase_activation___Human_.md already exists, skipping.
File go-cam-reviews/641ce4dc00000430-NOD2_localization_to_the_plasma_membrane_following_palmitoylation_by_ZDHHC5__Human_.md already exists, skipping.
File go-cam-reviews/641ce4dc00000586-UBL7_TRIM21_mediated_ubiquitination_of_MAVS_leading_to_type_I_interferon_production__Human_.md already exists, skipping.
File go-cam-reviews/641ce4dc00000914-Activation_of_Nf_kappa_B_via_ubiquitination_and_degradation_of_the_NF_kappa_B_inhibitor__Human_.md already exists, skipping.
File go-cam-reviews/641ce4dc00001047-Generation_of_NFKB1_p50_subunit_of__Nf_kappa_B_via_limited_processing_by_the_KPC1_complex__RNF123___leading_to_NF_kappa_B_inhibitor__Human_.md already exists, skipping.
File go-cam-reviews/6438950a00000032-Human_metapneumovirus_M2_2_inhibition_of_IRF7__Human_Metapneumovirus_.md already exists, skipping.
File go-cam-reviews/6438950a00000074-Human_metapneumovirus_M2_2_inhibition_of_RIGI_MAVS_signaling__Human_Metapneumovirus__.md already exists, skipping.
File go-cam-reviews/6438950a00000624-Activation_of_the_WNK1_SPAK_OSR1_kinase_cascade_in_response_to_hyperosmotic_stress__leading_to_promote_ion_influx_and_prevent_ion_efflux__Human_.md already exists, skipping.
File go-cam-reviews/6438950a00000714-Regulation_of_ion_transport_in_the_distal_nephron_by_WNK4__Human_.md already exists, skipping.
COMMAND: Review gomodel:6438950a00000766
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/6446bfcb00000006-Triglyceride_biosynthetic_process_2__Mouse_.md already exists, skipping.
File go-cam-reviews/6446bfcb00000319-Negative_regulation_of_epidermal_growth_factor_receptor_signaling_pathway_1__Mouse_.md already exists, skipping.
File go-cam-reviews/6446bfcb00000544-Negative_regulation_of_epidermal_growth_factor_receptor_signaling_pathway_2__Mouse_.md already exists, skipping.
File go-cam-reviews/6446bfcb00001000-Positive_regulation_of_epidermal_growth_factor_receptor_signaling_pathway_1__Mouse_.md already exists, skipping.
File go-cam-reviews/6446bfcb00001208-Thiamine_diphosphate_biosynthetic_process_1__Mouse_.md already exists, skipping.
File go-cam-reviews/6446bfcb00001243-Thiamine_diphosphate_biosynthetic_process_2__Mouse_.md already exists, skipping.
COMMAND: Review gomodel:6446bfcb00001336
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/6446bfcb00001774-Autophagosome_assembly__Human_.md already exists, skipping.
File go-cam-reviews/645d887900000340-Coenzyme_A_biosynthetic_process_1__Mouse_.md already exists, skipping.
File go-cam-reviews/645d887900000439-Contracted_muscle_secreted_FN1_activates_liver_autophagy_via_hepatic_Itga5_Itgb1_integrin_receptor_signaling___Mouse_.md already exists, skipping.
File go-cam-reviews/645d887900000671-Osteocalcin__bglap__hormone_produced_by_osteoblasts_binds_Gprc6a__receptor_and_regulates_testosterone_biosynthesis_and_male_fertility__Mouse__.md already exists, skipping.
File go-cam-reviews/645d887900000706-Smog_GPCR_signaling___epithelial_tube_formation__D_mel__.md already exists, skipping.
File go-cam-reviews/645d887900000999-BMP7_signaling_leading_to_osteoblast_differentiation__Human_.md already exists, skipping.
File go-cam-reviews/645d887900001077-Cell_type_specific__p53_independent_mitotic_G2_DNA_damage_checkpoint_signaling_mediated_by_CREB3L1_in_astrocytes___Mouse_.md already exists, skipping.
File go-cam-reviews/645d887900001323-14_3_3_sequestering_of_ZNRF2_E3_ligase_leading_to_ATP1A1_activity_at_plasma_membrane__Human_.md already exists, skipping.
File go-cam-reviews/645d887900001414-ZNFR1_mediated_TLR4_signaling_pathway_via_CAV1_ubiquitination_and_degradation__Human_.md already exists, skipping.
COMMAND: Review gomodel:645d887900001502
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/645d887900001551-Coenzyme_A_catabolic_process_2__Mouse_.md already exists, skipping.
COMMAND: Review gomodel:645d887900001795
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:646ff70100000239
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/646ff70100000391-Canonical_mTORC1_signaling__Human_.md already exists, skipping.
File go-cam-reviews/646ff70100000611-Ubiquitination_of_RagA_RRAGA_by_RNF152_inhibits_the__mTORC1_signaling__Human_.md already exists, skipping.
COMMAND: Review gomodel:646ff70100000838
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/646ff70100001312-Inhibition_of_the_canonical_mTORC1_signaling_by_the_GATOR1_complex__Human_.md already exists, skipping.
COMMAND: Review gomodel:646ff70100001561
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:646ff70100001795
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/646ff70100001877-Inhibition_of_the_canonical_mTORC1_signaling_via_ubiquitination_and_degradation_of_LAMTOR1_by_UBE3A__Human_.md already exists, skipping.
File go-cam-reviews/646ff70100002308-SMAD6_arginine_methylation_inhibits_SMAD1_signaling__Human_.md already exists, skipping.
File go-cam-reviews/646ff70100002557-Negative_regulation__of_autophagy_via_phosphorylation_of_ULK1_by_canonical_mTORC1_signaling__Human_.md already exists, skipping.
COMMAND: Review gomodel:646ff70100002802
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/646ff70100003125-Inhibition_of_the_canonical_mTORC1_signaling_by_NLK_in_response_to_osmotic_stress__Human_.md already exists, skipping.
COMMAND: Review gomodel:646ff70100003362
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:646ff70100003456
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:646ff70100003516
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/646ff70100004025-Activation_of_the_canonical_mTORC1_signaling_via_non_catalytic_deubiquitination_of_RPTOR_by_OTUB1__Human_.md already exists, skipping.
COMMAND: Review gomodel:646ff70100004144
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/646ff70100004220-Inhibition_of_the_canonical_mTORC1_signaling_by_AKT1S1_PRAS40_in_absence_of_insulin__Human_.md already exists, skipping.
COMMAND: Review gomodel:646ff70100004457
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/646ff70100004606-Inhibition_of_the_canonical_mTORC1_signaling__by_TSC2_in_response_to_starvation__Human_.md already exists, skipping.
File go-cam-reviews/646ff70100004848-Activation_of_the_canonical_mTORC1_signaling_in_response_to_insulin_via_phosphorylation_and_inhibition_of_TSC2__Human_.md already exists, skipping.
File go-cam-reviews/646ff70100004973-USP38_Lys_33_to_Lys_48_transition_on_TBK1_leading_to_its_degratdation__Human_.md already exists, skipping.
File go-cam-reviews/646ff70100005032-HCMV_UL138_substains_STAT1_activation_during_viral_latency__Human_Cytomegalovirus_.md already exists, skipping.
COMMAND: Review gomodel:646ff70100005033
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/646ff70100005137-IL33_signaling_pathway__Human_.md already exists, skipping.
File go-cam-reviews/6482692800000198-Regulation_of_the_canonical_mTORC1_signaling__via_ubiquitination_and_deubiquitination_of_RHEB_by_RNF152_and_USP4__respectively__Human_.md already exists, skipping.
File go-cam-reviews/6482692800000330-Regulation_of_the_canonical_mTORC1_signaling__via_deubiquitination_of_RHEB_by_ATXN3_in_response_to_starvation__Human_.md already exists, skipping.
File go-cam-reviews/6482692800000498-Activation_of_the_canonical_mTORC1_signaling_by_GPR155_LYCHOS_in_response_to_cholesterol_influx__Human_.md already exists, skipping.
File go-cam-reviews/6482692800000701-Activation_of_the_canonical_mTORC1_signaling_by_BMT2_SAMTOR_in_response_to_S_adenosyl_L_methionine_influx__Human_.md already exists, skipping.
File go-cam-reviews/6482692800001029-_Activation_of_the_canonical_mTORC1_signaling_by_GATOR2__which_inactivates_GATOR1_in_response_to__abundant_amino_acids__Human_.md already exists, skipping.
File go-cam-reviews/6482692800001393-Biotin_Metabolic_Process_1__Mouse_.md already exists, skipping.
File go-cam-reviews/6482692800001514-Inactivation_of_the_canonical_mTORC1_signaling_via_phosphorylation_of_WDR24_by_AMPK_in_response_to_glucose_starvation__Human_.md already exists, skipping.
File go-cam-reviews/6482692800001739-Inhibition_of_the_canonical_mTORC1_signaling_via_phosphorylation_of_RPTOR_by_AMPK_in_response_to_glucose_starvation__Human_.md already exists, skipping.
COMMAND: Review gomodel:6482692800001813
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/6482692800002523-Molybdopterin_Cofactor_Biosynthetic_Process_1__Mouse_.md already exists, skipping.
File go-cam-reviews/6482692800002614-Non_canonical_mTORC1_signaling_leading_to_TFEB_and_TFE3_phosphorylation_and_inactivation___Human_.md already exists, skipping.
File go-cam-reviews/648d0dc100000022-SUCNR1_in_adipocytes_controls_energy_homeostasis_by_modulating_circadian_clock_and_LEP_expression___Mouse_.md already exists, skipping.
COMMAND: Review gomodel:648d0dc100000321
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:648d0dc100000710
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/648d0dc100000867-Phosphorylation_of_DEPTOR_by_MAPK3_ERK1_promotes_DEPTOR_deubiquitination_by_USP7_and_enhanced_protein_stability__Human__.md already exists, skipping.
File go-cam-reviews/648d0dc100001272-Inhibition_of_the_non_canonical_mTORC1_signaling_following_phosphorylation_of_FNIP1_by_AMPK_in_response_to_mitochondrial_stress__Human__.md already exists, skipping.
COMMAND: Review gomodel:648d0dc100001547
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:6494e2e900000134
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/6494e2e900000187-TRAF7_modulation_of_NF_kappa_B_via_IKBKG_and_NEMO_K_29_ubquitination__Human_.md already exists, skipping.
File go-cam-reviews/6494e2e900001469-Mpeg1_perforin_2_forms_a_pore_for_to_deliver_antigens_for_cross_presentation__Mouse_.md already exists, skipping.
File go-cam-reviews/6494e2e900001496-MPEG1_perforin_2_forms_a_pore_for_to_deliver_antigens_for_cross_presentation__Human_.md already exists, skipping.
COMMAND: Review gomodel:6494e2e900001856
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/6494e2e900002018-Glyceraldehyde_3_phosphate_biosynthetic_process_1__Mouse_.md already exists, skipping.
File go-cam-reviews/6494e2e900002525-SUCNR1_in_adipocytes_controls_energy_homeostasis_by_modulating_circadian_clock_and_LEP_expression___Human_.md already exists, skipping.
File go-cam-reviews/64c3044100000089-Skeletal_muscle_acetylcholine_gated_channel_clustering_1__Mouse_.md already exists, skipping.
File go-cam-reviews/64c3044100000125-Positive_regulation_of_acetylcholine_receptor_transcription__Mouse_.md already exists, skipping.
COMMAND: Review gomodel:64c3044100000910
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:64c3044100001129
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:64c3044100001348
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:64c3044100001568
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/64c3044100001787-Inhibition_of_cGAS_STING_signaling_in_the_nucleus_by_BANF1__Human_.md already exists, skipping.
COMMAND: Review gomodel:64c3044100002015
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/64d5781900000111-Activation_of_cGAS_STING_signaling_following_acetylation_by_KAT5__Human_.md already exists, skipping.
COMMAND: Review gomodel:64d5781900000281
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/64d5781900000443-Inhibition_of_cGAS_STING_signaling_in_the_cytosol_by_TREX1__Human_.md already exists, skipping.
File go-cam-reviews/64d5781900000615-Activation_of_canonical_mTORC1_following_glycosylation_of_RPTOR_by_OGT_in_response_to_glucose_sufficiency__Human_.md already exists, skipping.
COMMAND: Review gomodel:64d5781900001969
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/64d5781900002033-Insulin_mediated_activation_of_the_ARF6_RAC1_axis_in_neurite_outgrowth__Human_.md already exists, skipping.
COMMAND: Review gomodel:64e7eefa00000404
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/64e7eefa00000854-Tumor_necrosis_factor_mediated_signaling_pathway_1__Mouse_.md already exists, skipping.
File go-cam-reviews/64e7eefa00001233-Extrinsic_apoptotic_signaling_pathway_via_death_domain_receptors_1_Mouse_.md already exists, skipping.
File go-cam-reviews/64e7eefa00001258-Inhibition_of_ALKBH5_RNA_demethylase_activity_by_sumoylation_in_response_to_reactive_oxygen_species__Human_.md already exists, skipping.
File go-cam-reviews/64e7eefa00001299-RBM33_binds_N6_methyladenosine__m6A__containing_mRNAs_and_promotes_their_demethylation_by_ALKBH5_RNA_demethylase__Human_.md already exists, skipping.
File go-cam-reviews/64e7eefa00001978-ALKBH5_is_involved_in_paraspeckle_assembly_and_is_regulated_by_acetylation_and_deacetylation_by_KAT8_and_HDAC7__respectively__Human__.md already exists, skipping.
COMMAND: Review gomodel:65039e8700000010
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/65039e8700000055-Phosphorylation_mediated_interactions_with_TOPBP1_couples_TP53BP1_and_9_1_1_in_DNA_damage_checkpoint__Human__.md already exists, skipping.
File go-cam-reviews/65039e8700000196-HTATSF1_and_TOPBP1_promote_RPA_RAD51_exchange_in_double_strand_break_repair_via_homologous_recombination__Human__.md already exists, skipping.
File go-cam-reviews/65039e8700001110-TRIM69_activation_of_STK3_by_ubiquitination_leading_to_centrosome_separation__Human_.md already exists, skipping.
File go-cam-reviews/6516135700000211-Tumor_necrosis_factor_mediated_signaling_pathway_2__Mouse_.md already exists, skipping.
File go-cam-reviews/6516135700000380-Heme_A_biosynthetic_process__Mouse_.md already exists, skipping.
File go-cam-reviews/6516135700000961-Heme_O_biosynthetic_process__Mouse_.md already exists, skipping.
File go-cam-reviews/6516135700001077-Heme_B_biosynthetic_process__Mouse_.md already exists, skipping.
COMMAND: Review gomodel:65288b2200000062
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/65288b2200000194-STING1_acts_as_a_proton_channel_and_promotes_autophagosome_assembly__Human_.md already exists, skipping.
File go-cam-reviews/65288b2200000496-Regulation_of_CGAS_activity_via_palmitoylation_and_depalmitoylation_by_ZDHHC9_and_LYPLAL1__respectively__Human__.md already exists, skipping.
File go-cam-reviews/65288b2200000643-STING1_trafficking_from_the_endoplasmic_reticulum_and_the_ERGIC_following_phosphorylation_by_MAP3K7_TAK1_and_interaction_with_STEEP1__Human_.md already exists, skipping.
File go-cam-reviews/65288b2200001166-TRIM55_and_TRIM21_mediated_inhibition_of_NFKB2__Human_.md already exists, skipping.
File go-cam-reviews/65288b2200001218-USP9X_TRIM32_modulation_of__IQCB1_during_G1_S__Human_.md already exists, skipping.
File go-cam-reviews/65288b2200001267-USP9X_TRIM32_modulation_of_IQCB1_during_G2_M__Human__.md already exists, skipping.
COMMAND: Review gomodel:653b0ce600000016
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/653b0ce600000202-BRD3_and_lncRNA_DIGIT_form_phase_separated_condensates_to_induce_endoderm_cell_differentiation__Human__.md already exists, skipping.
File go-cam-reviews/653b0ce600000382-TAX1BP1_mediated_degradation_of_MAVS_by_E3_ligase_ITCH__Human_.md already exists, skipping.
File go-cam-reviews/653b0ce600000432-TRIM32_TAX1BP1_dependent_selective_autophagic_degradation_of_TICAM1__Human_.md already exists, skipping.
COMMAND: Review gomodel:653b0ce600000623
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/653b0ce600000721-A_checkpoint_mediated_by_ATR_that_restricts_activation_of_CDK1_during_S_phase___Human__.md already exists, skipping.
COMMAND: Review gomodel:653b0ce600000800
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/653b0ce600001230-KSHV_ORF57_inhibition_of_host_PKR__Human_HHV8__.md already exists, skipping.
File go-cam-reviews/653b0ce600001283-KSHV_ORF57_inhibition_of_host_P_body_formation__Human_HHV8__.md already exists, skipping.
File go-cam-reviews/654d809000000010-Regulation_of_aggrephagy_via_palmitoylation_and_depalmitoylation_of_SQSTM1_by_ZDHHC19_and_LYPLA1__respectively___Human__.md already exists, skipping.
COMMAND: Review gomodel:654d809000000053
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/654d809000000112-SQSTM1_is_involved_in_aggrephagy_by_mediating_recruitment_of_ubiquitinated_proteins_to_autophagosomes__Human__.md already exists, skipping.
COMMAND: Review gomodel:654d809000000171
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/654d809000000248-Regulation_of_aggrephagy_via_phosphorylation_of_SQSTM1_by_CK2__Human__.md already exists, skipping.
COMMAND: Review gomodel:654d809000000802
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:654d809000001587
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:654d809000001692
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:654d809000002825
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:65692e7e00000049
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:65692e7e00000243
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:65692e7e00001241
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:65692e7e00001542
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:65692e7e00001784
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:65692e7e00001822
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:65692e7e00002024
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:657ba49f00000136
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:657ba49f00000907
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:657ba49f00001143
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:657ba49f00001888
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:65a1f4f800000029
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:65a1f4f800000428
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:65a1f4f800000487
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:65a1f4f800000553
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:65a1f4f800000673
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:65a1f4f800000855
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:65a1f4f800000922
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:65a1f4f800001029
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:65a1f4f800001127
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:65a1f4f800001246
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:65a1f4f800001380
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:65a1f4f800001740
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:65a1f4f800002022
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:65a1f4f800002142
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:65a1f4f800002257
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:65a1f4f800002442
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:65a1f4f800002560
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:65a1f4f800002665
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:65a1f4f800002740
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:65a1f4f800002884
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:65a1f4f800003391
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:65a1f4f800003542
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:65a1f4f800003760
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:65bc474400000029
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:65bc474400000069
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:65bc474400000269
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:65bc474400000403
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/65bc474400000537-Regulation_of_Hippo_signaling_by_MAP4K4__Human__.md already exists, skipping.
File go-cam-reviews/65bc474400000955-Negative_regulation_of_Hippo_signaling_by_STRIPAK_complex_via_STRN4_MAP4K4_Human__.md already exists, skipping.
COMMAND: Review gomodel:65bc474400001544
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/65c57c3400000000-Inhibition_of_the_GDF15_GFRAL_aversive_signaling_pathway_following_cleavage_of_GFRAL_by_MMP14__Human__.md already exists, skipping.
File go-cam-reviews/65c57c3400000100-Resolution_of_protein_DNA_cross_links_by_HMCES__BRIP1_FANCJ_and_SPRTN__Human__.md already exists, skipping.
File go-cam-reviews/65c57c3400000173-The_MSL_complex__composed_of_MSL1__MSL2__MSL3_and_KAT8__mediates_acetylation_of_histone_H4_at_Lys_16__H4K16ac___Human__.md already exists, skipping.
File go-cam-reviews/65c57c3400000359-Dosage_compensation_in_male_Drosophila_by_the_MSL_complex__composed_of_mle__msl_1__msl_2__msl_3_and_mof___D_melanogaster__.md already exists, skipping.
File go-cam-reviews/65c57c3400001115-Inhibition_of_SMDT1_EMRE_and_MCU_following_cleavage_by_the_m_AAA_protease_complex__composed_of_AFG3L2_and_SPG7___Human__.md already exists, skipping.
File go-cam-reviews/65c57c3400001478-Negative_regulation_of_Hippo_signaling_by_SLMAP_STRIPAK_complex__Human__.md already exists, skipping.
File go-cam-reviews/65c57c3400002539-The_CRL5_ASB11__complex_mediates_ubiquitination_and_degradation_of_DIRAS2__Human__.md already exists, skipping.
File go-cam-reviews/65c57c3400002666-Role_of_CD53_in_T_cell_receptor_signaling_pathway__Human_.md already exists, skipping.
File go-cam-reviews/65d7e4ac00000022-CARD9_regulation_by_TRIM62_USP15__Human_.md already exists, skipping.
File go-cam-reviews/65d7e4ac00000082-DUSP22_inhibition_of_TCR_signaling_via_UBR2_inhibition__Human_.md already exists, skipping.
File go-cam-reviews/65d7e4ac00001282-Thrombospondin_1_CD36_inhibition_of_angiogenesis_in_endothelial_cells__Human_.md already exists, skipping.
File go-cam-reviews/65d7e4ac00001363-Mitochondrial_calcium_uptake_by_the_uniplex_complex_composed_of_SMDT1_EMRE__MICU1__MICU2_and_MCU__Human__.md already exists, skipping.
File go-cam-reviews/65d7e4ac00001732-Activation_of_GPR75_by_CCL5_in_neurons__Human_.md already exists, skipping.
File go-cam-reviews/65d7e4ac00001800-RUFY1_mediates_early_endosome_to_Golgi_transport___Human_.md already exists, skipping.
File go-cam-reviews/65d7e4ac00002167-Glycogen_biosynthetic_process__Dmel_.md already exists, skipping.
File go-cam-reviews/65d7e4ac00002290-Glycogen_catabolic_process__Dmel_.md already exists, skipping.
File go-cam-reviews/65d7e4ac00002427-MICA_NKG2D_mediated_NK_cell_cytotoxicity__Human_.md already exists, skipping.
File go-cam-reviews/65d7e4ac00002435-MICU3_promotes_mitochondrial_calcium_uptake_by_MCU_in_the_central_nervous_system__Human__.md already exists, skipping.
File go-cam-reviews/65d7e4ac00002808-MCUB_inhibits_mitochondrial_calcium_uptake_by_the_uniplex_complex__composed_of_SMDT1_EMRE__MICU1__MICU2_and_MCU__to_prevent_calcium_overload__Human__.md already exists, skipping.
COMMAND: Review gomodel:65d7e4ac00002910
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/65f3ae5c00000111-Ufmylation_pathway__Human__.md already exists, skipping.
COMMAND: Review gomodel:65f3ae5c00000170
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:65f3ae5c00000257
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/65f3ae5c00000585-Ufmylation_of_CYB5R3__promotes_reticulophagy_and_CYB5R3_degradation__Human__.md already exists, skipping.
File go-cam-reviews/65f3ae5c00001022-UFL1_negatively_regulates_T_cell_activation_by_mediating_ufmylation_of_PDCD1_PD_1__Human__.md already exists, skipping.
File go-cam-reviews/65f3ae5c00002132-Control_of_GABAAR_clustering_to_GABAergic_synapses_by_Gephyrin__Human_.md already exists, skipping.
File go-cam-reviews/65f3ae5c00002208-Positive_regulation_of_glycogen_catabolic_process_1__Mouse_.md already exists, skipping.
File go-cam-reviews/65f3ae5c00002270-Positive_regulation_of_glycogen_catabolic_process_2__Mouse_.md already exists, skipping.
File go-cam-reviews/6606056e00000234-CD69_OxydizedLDL_pair_leading_to_PD_1_expression_in_T_cells__Human_.md already exists, skipping.
File go-cam-reviews/6606056e00000282-LGALS1_CD69_pair_involved_in_negative_regulation_of_T_helper_17_cell_lineage__Human_.md already exists, skipping.
COMMAND: Review gomodel:6606056e00000317
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:6606056e00000485
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/6606056e00000576-UBR5_ubiquitinates_ligand_bound_VDR_when_VDR_is_not_associated_with_Nuclear_receptor_coactivators__NCOAs___Human__.md already exists, skipping.
COMMAND: Review gomodel:6606056e00000637
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:6606056e00000678
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/6606056e00000767-ITCH_and_UBR5_catalyzed_branched_linked_polyubiquitination_of_TXNIP__Human__.md already exists, skipping.
COMMAND: Review gomodel:6606056e00000859
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/6606056e00000903-Activation_of_the_integrated_stress_response_via_activation_of_EIF2AK1_HRI_by_DELE1_in_response_to_mitochondrial_stress__Human_.md already exists, skipping.
File go-cam-reviews/6606056e00001308-Retinoic_acid_binds_and_activates_RARA_and_RXRA_nuclear_receptors__Human__.md already exists, skipping.
File go-cam-reviews/6606056e00001371-APP_clearance_through_CLU_TREM2_interaction___Human_.md already exists, skipping.
COMMAND: Review gomodel:6606056e00001418
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/6606056e00001462-TREM2_activated_by_APOA1___Human_.md already exists, skipping.
File go-cam-reviews/6606056e00001507-TREM2_activated_by_APOA2___Human_.md already exists, skipping.
COMMAND: Review gomodel:6606056e00001669
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/6606056e00001745-UBR4_and_KCMF1_ubiquitinate_arginylated_proteins_in_response_to_oxidative_stress__leading_to_degradation_of_ubiquitinated_proteins_in_autophagosomes___Human_.md already exists, skipping.
File go-cam-reviews/6606056e00001890-Activation_of_mitophagy__in_response_to_mitochondrial_damage_via_activation_of_EIF2AK1_HRI_by_DELE1__Human__.md already exists, skipping.
File go-cam-reviews/6606056e00002011-CD72_and_BCR_co_stimulation_by_sn_RNP_self_antigen__Human_.md already exists, skipping.
File go-cam-reviews/6606056e00002524-HIV_1_Vif_protein_hijacks_a_cullin_5_RING_E3_ubiquitin_protein_ligase_to_mediate_ubiquitination_and_degradation_of_APOBEC3G__Human__.md already exists, skipping.
File go-cam-reviews/66187e4700000246-The_CRL5_ASB9__complex_mediates_ubiquitination_and_degradation_of_CKB__Human__.md already exists, skipping.
File go-cam-reviews/66187e4700000318-The_CRL5_ASB11__complex_mediates_ubiquitination_and_degradation_of_BIK_in_response_to_endoplasmic_reticulum_stress__Human__.md already exists, skipping.
COMMAND: Review gomodel:66187e4700000906
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:66187e4700001030
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:66187e4700001102
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/66187e4700001274-N6__methyladenosine_modified_lncRNA_ARHGAP5_AS1_stabilises_CSDE1_and_coordinates_oncogenic_RNA_regulons_in_hepatocellular_carcinoma__PMID_36354136___Human_.md already exists, skipping.
File go-cam-reviews/66187e4700001573-RNA_capping__GO_0036260_.md already exists, skipping.
File go-cam-reviews/66187e4700001597-The_growth_hormone_receptor_signaling_pathway__Human__.md already exists, skipping.
File go-cam-reviews/66187e4700001644-Feedback_regulation_of_growth_hormone_receptor_signaling_pathway_via_ubiquitination_and_degradation_of_GHR_by_the_ECS_SOCS2__complex__Human__.md already exists, skipping.
File go-cam-reviews/66187e4700001744-meiotic_cohesion_protection_in_anaphase_I__GO_1990813_.md already exists, skipping.
File go-cam-reviews/66187e4700001781-silent_mating_type_cassette_heterochromatin_assembly__GO_0030466__.md already exists, skipping.
File go-cam-reviews/66187e4700002082-The_erythropoietin_mediated_signaling_pathway__Human__.md already exists, skipping.
File go-cam-reviews/66187e4700002129-Feedback_regulation_of_erythropoietin_mediated_signaling_via_ubiquitination_and_degradation_of_EPOR_by_the_ECS_SOCS2__complex__Human__.md already exists, skipping.
File go-cam-reviews/66187e4700002284-septation_initiation_signaling__GO_0031028__.md already exists, skipping.
File go-cam-reviews/66187e4700002599-SECTM1_CD7_interaction_leading_to_cytokine_production_upon_T_cell_activation__Human_.md already exists, skipping.
COMMAND: Review gomodel:66187e4700002637
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/66187e4700002704-Inhibition_of_reelin_signaling_via_ubiquitination_and_degradation_of_DAB1_by_the_ECS_SOCS7__complex_in_the_cortical_plate_of_the_developing_cerebral_cortex__Human__.md already exists, skipping.
File go-cam-reviews/66187e4700002778-The_reelin_signaling_pathway__Human__.md already exists, skipping.
File go-cam-reviews/66187e4700002881-IFNA1_CR2_role_in_B_cell_ISGs_induction__Human_.md already exists, skipping.
File go-cam-reviews/66187e4700003043-GDP_mannose_biosynthetic_process_from_glucose__Mouse_.md already exists, skipping.
File go-cam-reviews/66187e4700003150-adenylate_cyclase_activating_G_protein_coupled_receptor_signaling_pathway__GO_0007189_.md already exists, skipping.
File go-cam-reviews/662af8fa00000002-BTRC_is_ubiquitinated_and_degraded_by_a_Cul5_RING_ubiquitin_ligase_complex__Human__.md already exists, skipping.
File go-cam-reviews/662af8fa00000408-ubiquinone_metabolic_process__GO_0006743___.md already exists, skipping.
COMMAND: Review gomodel:662af8fa00000499
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:662af8fa00002099
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/662af8fa00002225-Gsdmd_palmitoylation_by_Zdhhc5_and_Zdhhc9_promotes_pyroptosis__Mouse_.md already exists, skipping.
File go-cam-reviews/662af8fa00002332-CD28_GRB2_axis_leading_to__RAS_activation__Human__.md already exists, skipping.
COMMAND: Review gomodel:662af8fa00002457
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/662af8fa00002572-Activation_of_the_non_canonical_inflammasome_mediated_by_Casp11_upon_lipopolysaccharide_binding_can_lead_to_blood_brain_barrier_breakdown__Mouse_.md already exists, skipping.
File go-cam-reviews/662af8fa00002657-Activation_of_the_non_canonical_inflammasome_mediated_by_CASP4_upon_lipopolysaccharide_binding_can_lead_to_blood_brain_barrier_breakdown__Human_.md already exists, skipping.
File go-cam-reviews/662af8fa00002877-TRAIL_TRAILR1_interaction_leading_to_apoptosis.md already exists, skipping.
File go-cam-reviews/663d668500000226-VIF_mediated_inhibition_of_STING_by_PTPN6__Human_HIV_.md already exists, skipping.
COMMAND: Review gomodel:663d668500000296
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/663d668500000596-oxidative_phosphorylation__GO_0006119_.md already exists, skipping.
File go-cam-reviews/663d668500001246-Pyroptotic_cell_death_mediated_by_GSDMD_and_NINJ1__Human__.md already exists, skipping.
File go-cam-reviews/663d668500001492-TRAIL_TRAILR2_interaction_leading_to_apoptosis.md already exists, skipping.
COMMAND: Review gomodel:663d668500001551
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:663d668500001704
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/663d668500001911-purine_nucleobase_metabolic_process__GO_0006144__.md already exists, skipping.
File go-cam-reviews/663d668500002178-phosphatidylinositol_phosphate_phosphatidylinositol__biosynthetic_process__GO_0006661__GO_0043647___.md already exists, skipping.
File go-cam-reviews/663d668500002302-canonical_glycolysis__GO_0061621_.md already exists, skipping.
File go-cam-reviews/663d668500003144-TGFB1_mediated_signaling_pathway__Human_.md already exists, skipping.
File go-cam-reviews/663d668500003182-TGFB2_mediated_signaling_pathway__Human_.md already exists, skipping.
File go-cam-reviews/663d668500003232-TGFB3_mediated_signaling_pathway__Human_.md already exists, skipping.
File go-cam-reviews/665912ed00000015-tricarboxylic_acid_cycle__GO_0006099_.md already exists, skipping.
File go-cam-reviews/665912ed00000192-GPI__anchor_biosynthetic_process__GO_0006506_.md already exists, skipping.
File go-cam-reviews/665912ed00000459-dolichol_linked_oligosaccharide_biosynthetic_process__GO_0006488__.md already exists, skipping.
COMMAND: Review gomodel:665912ed00000552
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/665912ed00000652-pericentric_heterochromatin_formation__GO_0031508_.md already exists, skipping.
File go-cam-reviews/665912ed00001983-subtelomeric_heterochromatin_formation__GO_0031509_.md already exists, skipping.
File go-cam-reviews/665912ed00002626-nitrogen_cycle_metabolic_process__GO_0071941_.md already exists, skipping.
COMMAND: Review gomodel:665912ed00003542
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:665912ed00003594
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:666b894f00000010
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/666b894f00000196-CD93_Multimerin_2_β1_integrin_complex_function_in_angiogenesis__Human_.md already exists, skipping.
COMMAND: Review gomodel:666b894f00000232
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:666b894f00000352
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:666b894f00001139
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:666b894f00001488
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:666b894f00002484
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:667dfe8d00000011
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:667dfe8d00000848
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:667dfe8d00000886
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:667dfe8d00000985
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:6690711d00000331
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:6690711d00000916
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:6690711d00001433
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/6690711d00001771-AARS1_mediates_lactylation_of_YAP1_and_TEAD1__promoting_activation_of_Hippo_signaling__Human__.md already exists, skipping.
File go-cam-reviews/6690711d00001806-SIRT1_mediates_delactylation_of_YAP1_and_TEAD1__promoting_inactivation_of_Hippo_signaling__Human__.md already exists, skipping.
File go-cam-reviews/6690711d00002607-ANG_tRNA_ribonuclease_activity_inhibits_translation_in_response_to_stress__Human__.md already exists, skipping.
File go-cam-reviews/6690711d00002652-RNH1_inhibits_the_tRNA_ribonuclease_activity_of_ANG_in_the_cytoplasm_in_absence_of_stress__Human__.md already exists, skipping.
File go-cam-reviews/6690711d00002821-tryptophan_biosynthetic_process__GO_0000162_.md already exists, skipping.
File go-cam-reviews/6690711d00002904-L_histidine_biosynthetic_process__GO_0000105_.md already exists, skipping.
File go-cam-reviews/66a3e0bb00000156-Positive_regulation_of_cholesterol_biosynthesis_by_PAQR3_by_anchoring_SREBF1_SCAP_complex_to_the_Golgi____Human_.md already exists, skipping.
File go-cam-reviews/66a3e0bb00000443-Positive_regulation_of_cholesterol_biosynthesis_by_PAQR3_by_anchoring_SREBF2_SCAP_complex_to_the_Golgi____Human_.md already exists, skipping.
File go-cam-reviews/66a3e0bb00001036-IGF1_mediated_signaling_via_IGF1R_receptor__Human_.md already exists, skipping.
COMMAND: Review gomodel:66a3e0bb00001076
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/66a3e0bb00001159-Signaling_by_Adrenomedullin_mediated_by_ADM_ligand_activating_CALCRL_RAMP2_receptor_complex__Human_.md already exists, skipping.
File go-cam-reviews/66a3e0bb00001555-Signaling_by_Adrenomedullin_mediated_by_ADM_ligand_activating_CALCRL_RAMP3_receptor_complex__Human_.md already exists, skipping.
File go-cam-reviews/66a3e0bb00001633-Signaling_by_Adrenomedullin_mediated_by_ADM2_ligand_activating_CALCRL_RAMP3_receptor_complex__Human_.md already exists, skipping.
File go-cam-reviews/66a3e0bb00001687-Signaling_by_Calcitonin_CGRP_mediated_by_CALCA_CGRP1_ligand_activating_CALCRL_RAMP1_receptor_complex__Human_.md already exists, skipping.
File go-cam-reviews/66a3e0bb00001742-Signaling_by_Calcitonin_CGRP_mediated_by_CALCB_CGRP2_ligand_activating_CALCRL_RAMP1_receptor_complex__Human_.md already exists, skipping.
File go-cam-reviews/66a3e0bb00001796-Signaling_by_Amylin_mediated_by_IAPP_ligand_activating_CALCR_RAMP1__AMYR1__receptor_complex__Human_.md already exists, skipping.
COMMAND: Review gomodel:66a3e0bb00001882
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:66a3e0bb00001935
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:66a3e0bb00001992
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/66a3e0bb00002104-ITPRIPL1_is_a_ligand_of_CD3E_that_negatively_regulates_TCR_signaling_pathway___Human_.md already exists, skipping.
File go-cam-reviews/66a3e0bb00002740-TMEFF1_restricts_herpes_simplex_virus_1__HHV_1__infection_in_the_brain_by_blocking_the_association_between_NECTIN1_and_the_viral_envelope_glycoprotein_D__Human__.md already exists, skipping.
File go-cam-reviews/66a3e0bb00002776-TMEFF1_restricts_herpes_simplex_virus_1__HHV_1__in_the_brain_by_blocking_the_association_between_MYH9_and_the_viral_envelope_glycoprotein_B__Human__.md already exists, skipping.
File go-cam-reviews/66a3e0bb00002793-TMEFF1_restricts_herpes_simplex_virus_1__HHV_1__in_the_brain_by_blocking_the_association_between_MYH10_and_the_viral_envelope_glycoprotein_B__Human__.md already exists, skipping.
File go-cam-reviews/66a3e0bb00002890-Thrombopoeitin_mediated_signaling_pathway__Human_.md already exists, skipping.
File go-cam-reviews/66a3e0bb00002988-pteridine_containing_compound_metabolic_process__GO_0042558_.md already exists, skipping.
File go-cam-reviews/66b5638000000056-GDP_L_fucose_salvage___Mouse_.md already exists, skipping.
File go-cam-reviews/66b5638000000102-PVR_CD226_mediated_NK_cell_cytotoxicity__Human_.md already exists, skipping.
File go-cam-reviews/66b5638000000624-Activation_of_the_integrated_stress_response_via_activation_of_EIF2AK3_PERK_in_response_to_unfolded_protein_response__Human__.md already exists, skipping.
File go-cam-reviews/66b5638000000739-Inhibition_of_the_PERK_mediated_unfolded_protein_response_by_HSPA5_BiP_in_absence_of_stress__Human__.md already exists, skipping.
File go-cam-reviews/66b5638000000808-Ubiquitination_and_degradation_of_NFE2L2_NRF2_by_KEAP1_in_absence_of_stress__Human__.md already exists, skipping.
File go-cam-reviews/66b5638000000873-EIF2AK3_PERK_phosphorylates_NFE2L2_NRF2_in_response_to_unfolded_protein_response__preventing_the_ubiquitination_of_NFE2L2_NRF2_by_KEAP1__Human__.md already exists, skipping.
File go-cam-reviews/66b5638000001291-NECTIN2_CD226_mediated_NK_cell_cytotoxicity__Human_.md already exists, skipping.
COMMAND: Review gomodel:66b5638000001329
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/66b5638000001589-Activation_of_the_integrated_stress_response_via_activation_of_EIF2AK3_PERK_in_response_to_unfolded_protein_response_promotes_expression_of_COX7A2L_SCAF1__increasing_formation_of_respiratory_chain_supercomplexes__Human__.md already exists, skipping.
File go-cam-reviews/66b5638000001665-Signaling_by_Calcitonin_mediated_by_CALCA_CT_ligand_activating_CALCR_RAMP2___AMYR2__receptor_complex__Human_.md already exists, skipping.
File go-cam-reviews/66b5638000001719-AKT1_inhibits_EIF2AK3_PERK___Human__.md already exists, skipping.
File go-cam-reviews/66b5638000001772-Signaling_by_Calcitonin_mediated_by_CALCA_CT_ligand_activating_CALCR_receptor__Human_.md already exists, skipping.
File go-cam-reviews/66b5638000001825-Signaling_by_Amylin_mediated_by_IAPP_ligand_activating_CALCR__receptor__Human_.md already exists, skipping.
File go-cam-reviews/66b5638000001968-PVR_TIGIT_pair_inhibits_NK_cell_mediated_cytotoxicity__Human_.md already exists, skipping.
COMMAND: Review gomodel:66b5638000002031
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/66b5638000002273-GRIM1_activates_GRID2_via_GNAQ_in_Purkinje_cells__Human__.md already exists, skipping.
COMMAND: Review gomodel:66b5638000002510
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/66b5638000002528-GRIM1_activates_GRID1_via_GNAQ_in_dopamine_neurons__Mouse__.md already exists, skipping.
File go-cam-reviews/66b5638000002630-GRIM1_activates_GRID1_via_GNAQ_in_dopamine_neurons__Human__.md already exists, skipping.
File go-cam-reviews/66b5638000002701-IL13RA2_mediated_alternative_IL13_pathway_leading_to_TGFB1_production__Human_.md already exists, skipping.
File go-cam-reviews/66c7d41500000163-Signaling_by_Calcitonin_CGRP_mediated_by_CALCA_CGRP1_ligand_activating_CALCR_RAMP1__AMYR1__receptor_complex__Human_.md already exists, skipping.
File go-cam-reviews/66c7d41500000427-Zika_virus_NS5_inhibition_of_STAT2_signaling_via_ZSWIM8__Human_.md already exists, skipping.
File go-cam-reviews/66c7d41500000544-CAAX_box_protein_maturation_1__Mouse_.md already exists, skipping.
File go-cam-reviews/66c7d41500000715-CLEC12A_acts_as_an_inhibitor_of_neutrophil_activation__Human__.md already exists, skipping.
File go-cam-reviews/66c7d41500000841-heme_biosynthetic_process__GO_0006783_.md already exists, skipping.
File go-cam-reviews/66c7d41500002088-ergosterol_biosynthetic_process_.md already exists, skipping.
COMMAND: Review gomodel:66c7d41500002413
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/66c7d41500002513-DDX39A_inhibition_of_immune_related_RNA_export_to_the_cytoplasm__Human_.md already exists, skipping.
File go-cam-reviews/66e382fb00000178-Signaling_by_Vasoactive_Intestinal_Peptide_VIP_mediated_by_VIPR1_receptor__Human_.md already exists, skipping.
File go-cam-reviews/66e382fb00000254-Signaling_by_Vasoactive_Intestinal_Peptide_VIP_mediated_by_VIPR2_receptor__Human_.md already exists, skipping.
File go-cam-reviews/66e382fb00000408-Signaling_by_PACAP_ADCYAP1_mediated_by_VIPR1_receptor__Human_.md already exists, skipping.
File go-cam-reviews/66e382fb00000449-Signaling_by_PACAP_ADCYAP1_mediated_by_VIPR2_receptor__Human_.md already exists, skipping.
File go-cam-reviews/66e382fb00000583-Signaling_by_PACAP_ADCYAP1_mediated_by_PAC1R_ADCYAP1R1_receptor__Human_.md already exists, skipping.
COMMAND: Review gomodel:66e382fb00001097
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:66e382fb00001148
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:66e382fb00001225
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:66e382fb00001232
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:66e382fb00001412
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:66e382fb00001468
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:66e382fb00001531
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:66e382fb00001786
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:66e382fb00001913
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/66e382fb00002105-BMP8A_role_in_spermatogenesis_via_SMAD1__SMAD5_and_SMAD9__Human_.md already exists, skipping.
File go-cam-reviews/66e382fb00002243-BMP8B_role_in_adipocyte_differentiation_inhibition__Human_.md already exists, skipping.
File go-cam-reviews/66e382fb00002293-Signaling_by_Secretin_SCT_mediated_by_SCTR_receptor__Human_.md already exists, skipping.
COMMAND: Review gomodel:66e382fb00002599
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:66e382fb00002662
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:66e382fb00002738
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:66e382fb00003045
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
COMMAND: Review gomodel:66f5faaa00000026
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/66f5faaa00000112-TRAF6_and_HUWE1_catalyze_branched_linked_polyubiquitination_that_promote_NF_kappa_B_signaling__Human__.md already exists, skipping.
File go-cam-reviews/66f5faaa00001204-Retinoid_Metabolic_Process_1__Mouse__.md already exists, skipping.
File go-cam-reviews/67086be200000363-cardiolipin_metabolic_process__GO_0032048___Spom_.md already exists, skipping.
File go-cam-reviews/67086be200001578-Negative_regulation_of_BNIP3_and_BNIP3L_via_PPTC7_and_FBXL4__Human_.md already exists, skipping.
File go-cam-reviews/67086be200001601-Fertilization_complex_allows_sperm_egg_recognition_during_fertilization___Human_.md already exists, skipping.
File go-cam-reviews/67086be200002266-sphingolipid_biosynthetic_process__GO_0030148_.md already exists, skipping.
File go-cam-reviews/67086be200002592-Retinoid_Metabolic_Process_3__Mouse__.md already exists, skipping.
File go-cam-reviews/67086be200002705-Retinoid_Metabolic_Process_4__Mouse__.md already exists, skipping.
COMMAND: Review gomodel:671ae02600000676
Error: status_code: 401, model_name: anthropic/claude-sonnet, body: {'message': 'Authentication Error, Invalid proxy server token passed. Received API Key (hashed)=3f8c0d73d46f156904f93b898c4f2f8f8af9ecc9cc54d976a52cb321f6d3ddd0. Unable to find token in cache or `LiteLLM_VerificationTokenTable`', 'type': 'auth_error', 'param': 'None', 'code': '401'}
File go-cam-reviews/MGI_MGI_109482-Cacna1a__MGI_MGI_109482_.md already exists, skipping.
File go-cam-reviews/YeastPathways_GLUCONEO-PWY-1-gluconeogenesis_I___imported_from__Saccharomyces_Genome_Database.md already exists, skipping.
File go-cam-reviews/YeastPathways_P4-PWY-1-superpathway_of_threonine_and_methionine_biosynthesis___imported_from__Saccharomyces_Genome_Database.md already exists, skipping.
File go-cam-reviews/YeastPathways_PWY-5084-2_oxoglutarate_decarboxylation_to_succinyl_CoA___imported_from__Saccharomyces_Genome_Database.md already exists, skipping.
File go-cam-reviews/YeastPathways_PWY3O-20-folate_polyglutamylation___imported_from__Saccharomyces_Genome_Database.md already exists, skipping.
File go-cam-reviews/YeastPathways_PWY3O-4158-superpathway_of_NAD_biosynthesis___imported_from__Saccharomyces_Genome_Database.md already exists, skipping.
File go-cam-reviews/YeastPathways_TCA-EUK-PWY-TCA_cycle__aerobic_respiration___imported_from__Saccharomyces_Genome_Database.md already exists, skipping.
print("done")
done
# find all reviews in go-cam-reviews/ by glob searching *md
import glob
files = glob.glob("go-cam-reviews/*.md")
#cborg_api_key
summarization_model = OpenAIModel(
"anthropic/claude-sonnet",
provider=OpenAIProvider(
base_url="https://api.cborg.lbl.gov",
api_key=cborg_api_key),
)
for fn in files:
print(fn)
content = open(fn).read()
#print(len(content))
# content = content[:200]
command = f"Summarize this review: {content}"
#result = gocam_reviewer_agent.run_sync(command, deps=deps, model=ai_model, model_settings=settings)
result = gocam_review_summarizer_agent.run_sync(command, deps=deps, model=summarization_model)
#print(result.data)
# save the json in the same dir
with open(fn + ".json", "w") as f:
f.write(result.data.model_dump_json(indent=2))
#break
go-cam-reviews/63f809ec00000560-Non_canonical_activity_of_the_RQC_complex_via_CAT_tailing_by_NEMF_that_promotes_degradation_of_incompletely_synthesized_nascent_proteins_by_the_DesCEND_pathway__Human_.md
go-cam-reviews/62900b6400002879-Dermatan_sulfate_catabolic_process__Mouse_.md
go-cam-reviews/66187e4700003043-GDP_mannose_biosynthetic_process_from_glucose__Mouse_.md
go-cam-reviews/66b5638000002630-GRIM1_activates_GRID1_via_GNAQ_in_dopamine_neurons__Human__.md
go-cam-reviews/56170d5200000012-kctd10_in_heart_development_PMID_24430697_.md
go-cam-reviews/62b4ffe300001832-Activation_of_CASP7_by_CASP1_in_response_to_lipopolysaccharide__leading_to_cleavage_and_degradation_of_PARP1_by_CASP7__Human_.md
go-cam-reviews/62b4ffe300002814-Poxvirus_OPG204_inhibition_of_type_I_interferon_signaling___Human_Poxvirus__.md
go-cam-reviews/65c57c3400000100-Resolution_of_protein_DNA_cross_links_by_HMCES__BRIP1_FANCJ_and_SPRTN__Human__.md
go-cam-reviews/665912ed00000459-dolichol_linked_oligosaccharide_biosynthetic_process__GO_0006488__.md
go-cam-reviews/62b4ffe300002959-Aflaroxin__Aspergillus_parasiticus_.md
go-cam-reviews/62e3212700001890-Regulation_of_energy_homeostasis_by_OTUD3__Human_.md
go-cam-reviews/6606056e00001462-TREM2_activated_by_APOA1___Human_.md
go-cam-reviews/6494e2e900002525-SUCNR1_in_adipocytes_controls_energy_homeostasis_by_modulating_circadian_clock_and_LEP_expression___Human_.md
go-cam-reviews/62b4ffe300005389-Poxvirus_OPG184_inhibition_of_host_NF_kappa_B_via_KPNA2__Human_Poxvirus__.md
go-cam-reviews/627d95ee00000757-Regulation_of_CGAS_activity_by_ZDHHC18__Human_.md
go-cam-reviews/617b481400000995-Epidermal_growth_factor_receptor_signaling_pathway_1__Mouse_.md
go-cam-reviews/66b5638000002273-GRIM1_activates_GRID2_via_GNAQ_in_Purkinje_cells__Human__.md
go-cam-reviews/67086be200002592-Retinoid_Metabolic_Process_3__Mouse__.md
go-cam-reviews/64e7eefa00001258-Inhibition_of_ALKBH5_RNA_demethylase_activity_by_sumoylation_in_response_to_reactive_oxygen_species__Human_.md
go-cam-reviews/60e7989d00001485-Tetrahydrofolate_interconversion_1a__Mouse_.md
go-cam-reviews/57c82fad00000695-F13a1_and_F13b_mouse_blood_clotting.md
go-cam-reviews/6246724f00000763-TSLP_mediated_signaling_pathway__Human_.md
go-cam-reviews/60418ffa00001124-Hypoxanthine_catabolic_process__Mouse_.md
go-cam-reviews/62f58d8800001119-Insulin_receptor_recycling__Mouse_.md
go-cam-reviews/65f3ae5c00000585-Ufmylation_of_CYB5R3__promotes_reticulophagy_and_CYB5R3_degradation__Human__.md
go-cam-reviews/66a3e0bb00001555-Signaling_by_Adrenomedullin_mediated_by_ADM_ligand_activating_CALCRL_RAMP3_receptor_complex__Human_.md
go-cam-reviews/6446bfcb00001774-Autophagosome_assembly__Human_.md
go-cam-reviews/60ad85f700000612-TRIM47_activity_on_ILF3.md
go-cam-reviews/65f3ae5c00002270-Positive_regulation_of_glycogen_catabolic_process_2__Mouse_.md
go-cam-reviews/632cf60a00000169-HHV1_ICP0_modulation_of_interferon_production_via_MORC3_degradation__Human_Herpesvirus__.md
go-cam-reviews/63c0ac2b00000464-Zika_virus_inhibition_of_TBK1_via_CEP63_binding_and_centrosome_disorganization__Human_Zika_virus_.md
go-cam-reviews/63a86a8600001202-DHX16_mediated_viral_RNA_recognition_and_activation_of_RIGI__Human_.md
go-cam-reviews/627d95ee00000024-IL12_mediated_signaling_pathway__Human_.md
go-cam-reviews/6205c24300000050-SIRT6_inactivation_by_lncPRESS1_RNA__Human_.md
go-cam-reviews/5fadbcf000000480-UMP_catabolic_process__Mouse_.md
go-cam-reviews/5fa76ad400000374-IMP_catabolic_process_to_allantoin__Mouse_.md
go-cam-reviews/6606056e00000282-LGALS1_CD69_pair_involved_in_negative_regulation_of_T_helper_17_cell_lineage__Human_.md
go-cam-reviews/65d7e4ac00001282-Thrombospondin_1_CD36_inhibition_of_angiogenesis_in_endothelial_cells__Human_.md
go-cam-reviews/646ff70100004848-Activation_of_the_canonical_mTORC1_signaling_in_response_to_insulin_via_phosphorylation_and_inhibition_of_TSC2__Human_.md
go-cam-reviews/62b4ffe300006559-Insulin_receptor_signaling_pathway_2__Mouse__.md
go-cam-reviews/568b0f9600000284-Antibacterial_innate_immune_response_in_the_intestine_via_MAPK_cascade__C__elegans_.md
go-cam-reviews/63894f2500001789-Fmr1_binds_N6_methyladenosine__m6A__containing_mRNAs_and_promotes_their_nuclear_export__Mouse_.md
go-cam-reviews/5ee8120100002841-Inflammatory_signaling_involved_in_regulation_of_hematopoietic_stem_cell_differentiation_via_notch1a__tnfa__tnfrsf1b__jag1a__D_rerio_.md
go-cam-reviews/627d95ee00002159-Xenopus_trio__and_cdh11_in_development_and_neural_cell_migration_.md
go-cam-reviews/648d0dc100000022-SUCNR1_in_adipocytes_controls_energy_homeostasis_by_modulating_circadian_clock_and_LEP_expression___Mouse_.md
go-cam-reviews/66b5638000000102-PVR_CD226_mediated_NK_cell_cytotoxicity__Human_.md
go-cam-reviews/5f46c3b700002102-SPModule_TIRAP_MYDDOSOME.md
go-cam-reviews/665912ed00000652-pericentric_heterochromatin_formation__GO_0031508_.md
go-cam-reviews/66187e4700002599-SECTM1_CD7_interaction_leading_to_cytokine_production_upon_T_cell_activation__Human_.md
go-cam-reviews/63a86a8600000221-positive_regulation_of_transcription_from_RNA_polymerase_II_promoter_by_glucose_1__Mouse_.md
go-cam-reviews/646ff70100000611-Ubiquitination_of_RagA_RRAGA_by_RNF152_inhibits_the__mTORC1_signaling__Human_.md
go-cam-reviews/63e5937500001029-Inhibition_of_IFNB1_translation_initiation_by_EIF4E2_in_response_to_viral_infection___Human_Sars_CoV_2_.md
go-cam-reviews/663d668500003232-TGFB3_mediated_signaling_pathway__Human_.md
go-cam-reviews/646ff70100001312-Inhibition_of_the_canonical_mTORC1_signaling_by_the_GATOR1_complex__Human_.md
go-cam-reviews/645d887900000439-Contracted_muscle_secreted_FN1_activates_liver_autophagy_via_hepatic_Itga5_Itgb1_integrin_receptor_signaling___Mouse_.md
go-cam-reviews/66a3e0bb00000443-Positive_regulation_of_cholesterol_biosynthesis_by_PAQR3_by_anchoring_SREBF2_SCAP_complex_to_the_Golgi____Human_.md
go-cam-reviews/641ce4dc00000430-NOD2_localization_to_the_plasma_membrane_following_palmitoylation_by_ZDHHC5__Human_.md
go-cam-reviews/67086be200001578-Negative_regulation_of_BNIP3_and_BNIP3L_via_PPTC7_and_FBXL4__Human_.md
go-cam-reviews/613aae0000000813-Liver_apoptosis_regulation_by_CASP6__Human_.md
go-cam-reviews/62b4ffe300003655-Zearalenone_biosynthesis__Gibberella_zeae_.md
go-cam-reviews/65c57c3400000173-The_MSL_complex__composed_of_MSL1__MSL2__MSL3_and_KAT8__mediates_acetylation_of_histone_H4_at_Lys_16__H4K16ac___Human__.md
go-cam-reviews/627d95ee00000909-Regulation_of_CGAS_by_PCBP2__Human_.md
go-cam-reviews/636d9ce800002041-Positive_regulation_of_gluconeogenesis_1__Mouse_.md
go-cam-reviews/59cc772c00000000-IL1beta_mediated_signaling_pathway__Human_.md
go-cam-reviews/6516135700000211-Tumor_necrosis_factor_mediated_signaling_pathway_2__Mouse_.md
go-cam-reviews/626b20c100000025-IL9_mediated_signaling_pathway__Human_.md
go-cam-reviews/6482692800000498-Activation_of_the_canonical_mTORC1_signaling_by_GPR155_LYCHOS_in_response_to_cholesterol_influx__Human_.md
go-cam-reviews/62b4ffe300000241-Poxvirus_CRMB_inhibition_of_TNF_signaling_pathway__Human_Poxvirus__.md
go-cam-reviews/662af8fa00000408-ubiquinone_metabolic_process__GO_0006743___.md
go-cam-reviews/62f58d8800003672-Positive_regulation_of_insulin_secretion_3___Mouse_.md
go-cam-reviews/662af8fa00002877-TRAIL_TRAILR1_interaction_leading_to_apoptosis.md
go-cam-reviews/62900b6400000500-Regulation_of_ACLY_by_acetylation_by_PCAF_KAT2B_and_ubiquitination__by_UBR4___Human_.md
go-cam-reviews/627d95ee00001405-Il17A_mediated_signaling_pathway__Human_.md
go-cam-reviews/62f58d8800003277-Import_of_ATM_into_peroxisomes_y_in_response_to_reactive_oxygen_species_via_the_PEX5_dependent__import_pathway__leading_to_PEX5_ubiquitination_and_pexophagy__Human_.md
go-cam-reviews/63f809ec00000347-TRIM60_mediated_inhibition_of_NF_kappa_B_signaling_via_TAB2_SUMOylation__Human_.md
go-cam-reviews/6606056e00001745-UBR4_and_KCMF1_ubiquitinate_arginylated_proteins_in_response_to_oxidative_stress__leading_to_degradation_of_ubiquitinated_proteins_in_autophagosomes___Human_.md
go-cam-reviews/6197061700001622-Epidermal_growth_factor_receptor_signaling_pathway_2__Mouse_.md
go-cam-reviews/62b4ffe300000784-Involvement_of_CASP7_in_apoptosis__its_activation_by_initiator_caspases__CASP8__CASP9_and_CASP10___and_regulation_by_XIAP_and_PAK2__Human_.md
go-cam-reviews/62b4ffe300004209-Terrequinone_A_biosynthesis__Emericella_nidulans_.md
go-cam-reviews/65d7e4ac00001732-Activation_of_GPR75_by_CCL5_in_neurons__Human_.md
go-cam-reviews/63a86a8600001865-Irgb10_Gm12250_mediates_disruption_of_the_pathogen_membrane__liberating_ligands_that_are_detected_by_inflammasomes___Mouse_.md
go-cam-reviews/65d7e4ac00001800-RUFY1_mediates_early_endosome_to_Golgi_transport___Human_.md
go-cam-reviews/66b5638000001291-NECTIN2_CD226_mediated_NK_cell_cytotoxicity__Human_.md
go-cam-reviews/641ce4dc00000586-UBL7_TRIM21_mediated_ubiquitination_of_MAVS_leading_to_type_I_interferon_production__Human_.md
go-cam-reviews/5e72450500004019-SARS_COV2_HOST_.md
go-cam-reviews/66e382fb00002105-BMP8A_role_in_spermatogenesis_via_SMAD1__SMAD5_and_SMAD9__Human_.md
go-cam-reviews/64d5781900002033-Insulin_mediated_activation_of_the_ARF6_RAC1_axis_in_neurite_outgrowth__Human_.md
go-cam-reviews/YeastPathways_PWY3O-4158-superpathway_of_NAD_biosynthesis___imported_from__Saccharomyces_Genome_Database.md
go-cam-reviews/5f46c3b700002685-IL6_sIL6R_Trans_signaling_pathway__Human_.md
go-cam-reviews/62b4ffe300000717-Poxvirus_OPG025_inhibition_of_antiviral_IFITs__Human_Poxvirus__.md
go-cam-reviews/617b481400000521-KAT5_involvement_in_nucleotide_excision_repair__Human_.md
go-cam-reviews/622aace900001389-Pentose_phosphate_shunt_2__Mouse_.md
go-cam-reviews/5ee8120100001898-Migrasome_signaling_involved_in_organ_morphogenesis_via_cxcl12a__cxcr4b__tspan4a__tspan7__D__rerio_.md
go-cam-reviews/6446bfcb00001243-Thiamine_diphosphate_biosynthetic_process_2__Mouse_.md
go-cam-reviews/613aae0000000579-SP_ANN_TPPP.md
go-cam-reviews/6348a65d00002622-Ascorbic_acid_biosynthetic_process_1__Mouse_.md
go-cam-reviews/635b1e3e00002003-Inhibition_of_GSDMD_mediated_pyroptosis_by_M_tuberculosis_PtpB_phosphatase_that_alters_membrane_phospholipid_composition__Human_and_M_tuberculosis_.md
go-cam-reviews/61e0e55600000624-Cyclin_D_ubiquitination_and_degradation_by_AMBRA1__Human_.md
go-cam-reviews/6246724f00000283-Regulation_of_the_mTORC1_signaling_via_ubiquitination_and_deubiquitnation_of_SESN2_by_RNF167_and_STAMBPL1__Human_.md
go-cam-reviews/63f809ec00001358-ARKL1_negatively_negulates_Epstein_Barr_virus_reactivation_by_inhibiting_JUN_mediated_transcription___Human_Epstein_Barr_virus_.md
go-cam-reviews/60418ffa00001200-Guanine_catabolic_process__Mouse_.md
go-cam-reviews/63d320cd00000399-Negative_regulation_of_the_AIM2_inflammasome_by_Ifi202__Mouse_.md
go-cam-reviews/65288b2200001218-USP9X_TRIM32_modulation_of__IQCB1_during_G1_S__Human_.md
go-cam-reviews/66e382fb00002243-BMP8B_role_in_adipocyte_differentiation_inhibition__Human_.md
go-cam-reviews/60d5209a00000233-tumor_necrosis_factor_mediated_signaling_pathway_via_grnd_egr__D_mel_.md
go-cam-reviews/66b5638000000056-GDP_L_fucose_salvage___Mouse_.md
go-cam-reviews/65039e8700000196-HTATSF1_and_TOPBP1_promote_RPA_RAD51_exchange_in_double_strand_break_repair_via_homologous_recombination__Human__.md
go-cam-reviews/641ce4dc00001047-Generation_of_NFKB1_p50_subunit_of__Nf_kappa_B_via_limited_processing_by_the_KPC1_complex__RNF123___leading_to_NF_kappa_B_inhibitor__Human_.md
go-cam-reviews/5fce9b7300002336-SPModule_TREM1_DAP12.md
go-cam-reviews/63e5937500000487-Negative_regulation_of_inflammatory_response_to_wounding_by_Reg3g___Mouse_.md
go-cam-reviews/63894f2500001894-ARRDC4_mediated_activation_of_MDA5_through_K63_ubiquitination_by_TRIM65__Human_.md
go-cam-reviews/62f58d8800001680-Gut_Microbiota_tryptophan_metabolism__Regulation_of_intestinal_epithelial_cell_homesotasis_by_Indole_AhR__Human_E_coli_.md
go-cam-reviews/665912ed00002626-nitrogen_cycle_metabolic_process__GO_0071941_.md
go-cam-reviews/62b4ffe300004953-Arginine_ADP_riboxanation_of_CASP3_by_by_C_violaceum_CopC_that_blocks_CASP3_activity__subsequent_apoptosis_and_pyroptosis__Human__.md
go-cam-reviews/646ff70100004220-Inhibition_of_the_canonical_mTORC1_signaling_by_AKT1S1_PRAS40_in_absence_of_insulin__Human_.md
go-cam-reviews/64d5781900000615-Activation_of_canonical_mTORC1_following_glycosylation_of_RPTOR_by_OGT_in_response_to_glucose_sufficiency__Human_.md
go-cam-reviews/62b4ffe300006001-HHV1_US3_inhibition_of_host_IRF3__Human_Herpesvirus__.md
go-cam-reviews/66b5638000000624-Activation_of_the_integrated_stress_response_via_activation_of_EIF2AK3_PERK_in_response_to_unfolded_protein_response__Human__.md
go-cam-reviews/62b4ffe300004525-Regulation_of_the_JAK_STAT_pathway_by_calmodulin_in_response_to_interferon_beta__Human_.md
go-cam-reviews/5fadbcf000001962-T_helper_17_cell_lineage_commitment_by_IL6_cluster__Human_.md
go-cam-reviews/62b4ffe300004362-Poxvirus_OPG193_interferon_gamma_decoy_receptor__Human_Poxvirus__.md
go-cam-reviews/633b013300000306-Tricarboxylic_acid_cycle_1__Mouse_.md
go-cam-reviews/662af8fa00000002-BTRC_is_ubiquitinated_and_degraded_by_a_Cul5_RING_ubiquitin_ligase_complex__Human__.md
go-cam-reviews/63a86a8600000489-TRIM22_NT5C2_regulation_of_RIGI_via_ubiquitination__Human_.md
go-cam-reviews/65039e8700000055-Phosphorylation_mediated_interactions_with_TOPBP1_couples_TP53BP1_and_9_1_1_in_DNA_damage_checkpoint__Human__.md
go-cam-reviews/648d0dc100001272-Inhibition_of_the_non_canonical_mTORC1_signaling_following_phosphorylation_of_FNIP1_by_AMPK_in_response_to_mitochondrial_stress__Human__.md
go-cam-reviews/64d5781900000443-Inhibition_of_cGAS_STING_signaling_in_the_cytosol_by_TREX1__Human_.md
go-cam-reviews/623d156d00000752-Glycogen_catabolic_process_2__Mouse_.md
go-cam-reviews/62b4ffe300002896-Poxvirus_OPG043_inhibition_of_host_PKR__Human_Poxvirus__.md
go-cam-reviews/5fadbcf000001101-SPModule_IFIH1_MAVS.md
go-cam-reviews/66b5638000000873-EIF2AK3_PERK_phosphorylates_NFE2L2_NRF2_in_response_to_unfolded_protein_response__preventing_the_ubiquitination_of_NFE2L2_NRF2_by_KEAP1__Human__.md
go-cam-reviews/62b4ffe300003618-Poxvirus_OPG045_inhibition_of_host_BAK_mediated_apoptosis__Human_Poxvirus__.md
go-cam-reviews/663d668500002302-canonical_glycolysis__GO_0061621_.md
go-cam-reviews/62b4ffe300000240-Perforin_maturation_leading_to_granzyme_mediated_programmed_cell_death_signaling_pathway__Mouse_.md
go-cam-reviews/665912ed00000015-tricarboxylic_acid_cycle__GO_0006099_.md
go-cam-reviews/6348a65d00002174-USP44_mediated_FOXP3_deubiquitination_leading_to_regulatory_T_cell_differentiation__Human_.md
go-cam-reviews/633b013300001469-Pyruvate_catabolic_process_2__Mouse_.md
go-cam-reviews/641ce4dc00000214-NOD1_signaling_in_response_to_gamma_D_glutamyl_meso_diaminopimelic_acid__iE_DAP___leading_to_NF_kappa_B_and_MAP_kinase_activation___Human_.md
go-cam-reviews/645d887900001551-Coenzyme_A_catabolic_process_2__Mouse_.md
go-cam-reviews/60ad85f700000110-receptor_signaling_pathway_via_JAK_STAT_via_upd2_dome__D_mel_.md
go-cam-reviews/6348a65d00001191-Nociceptor_derived_Reg3g_prevents_endotoxic_death_by_targeting_kynurenine_pathway_in_microglia___Mouse_.md
go-cam-reviews/63c0ac2b00000088-The_AIM2_inflammasome__Mouse_.md
go-cam-reviews/66b5638000001825-Signaling_by_Amylin_mediated_by_IAPP_ligand_activating_CALCR__receptor__Human_.md
go-cam-reviews/5fce9b7300001590-SPModule_PGLYRP1_HSP701A.md
go-cam-reviews/60ad85f700002947-_de_novo__IMP_biosynthetic_process__Mouse_.md
go-cam-reviews/5fb9cc0600000727-Triacyl_lipopetide_activation_of_TLR1_TLR2_complex__Human_.md
go-cam-reviews/663d668500003144-TGFB1_mediated_signaling_pathway__Human_.md
go-cam-reviews/63894f2500000870-Liquid_liquid_phase_separation_of_FXR1_drives_translation_of_mRNAs_and_regulation_of_FXR1_by_ubiquitination_and_phosphorylation__Human_.md
go-cam-reviews/62b4ffe300005953-HHV1_US3_inhibition_of_host_NF_kappa_B_signaling_via_RELA__Human_Herpesvirus__.md
go-cam-reviews/62f58d8800000378-Insulin_like_growth_factor_receptor_signaling_pathway_4__Mouse_.md
go-cam-reviews/613aae0000000040-cGAS_Sting_pathway__Drosophila_.md
go-cam-reviews/6516135700001077-Heme_B_biosynthetic_process__Mouse_.md
go-cam-reviews/63f809ec00001734-TGF_beta_mediated_inhibition_of_TAF7_via_TRIM26.md
go-cam-reviews/60ad85f700003015-_de_novo__GMP_biosynthetic_process__Mouse_.md
go-cam-reviews/6482692800000198-Regulation_of_the_canonical_mTORC1_signaling__via_ubiquitination_and_deubiquitination_of_RHEB_by_RNF152_and_USP4__respectively__Human_.md
go-cam-reviews/6446bfcb00000319-Negative_regulation_of_epidermal_growth_factor_receptor_signaling_pathway_1__Mouse_.md
go-cam-reviews/5ae3b0f600000435-Regulation_of_sprouting_angiogenesis_via_dll4__egfl6__itgb1a__D__rerio_.md
go-cam-reviews/YeastPathways_P4-PWY-1-superpathway_of_threonine_and_methionine_biosynthesis___imported_from__Saccharomyces_Genome_Database.md
go-cam-reviews/66187e4700001274-N6__methyladenosine_modified_lncRNA_ARHGAP5_AS1_stabilises_CSDE1_and_coordinates_oncogenic_RNA_regulons_in_hepatocellular_carcinoma__PMID_36354136___Human_.md
go-cam-reviews/65bc474400000537-Regulation_of_Hippo_signaling_by_MAP4K4__Human__.md
go-cam-reviews/6446bfcb00001000-Positive_regulation_of_epidermal_growth_factor_receptor_signaling_pathway_1__Mouse_.md
go-cam-reviews/648d0dc100000867-Phosphorylation_of_DEPTOR_by_MAPK3_ERK1_promotes_DEPTOR_deubiquitination_by_USP7_and_enhanced_protein_stability__Human__.md
go-cam-reviews/6482692800000701-Activation_of_the_canonical_mTORC1_signaling_by_BMT2_SAMTOR_in_response_to_S_adenosyl_L_methionine_influx__Human_.md
go-cam-reviews/6606056e00002524-HIV_1_Vif_protein_hijacks_a_cullin_5_RING_E3_ubiquitin_protein_ligase_to_mediate_ubiquitination_and_degradation_of_APOBEC3G__Human__.md
go-cam-reviews/66c7d41500002088-ergosterol_biosynthetic_process_.md
go-cam-reviews/600ced8500002343-BMP9_signaling_pathway__Human_.md
go-cam-reviews/645d887900000999-BMP7_signaling_leading_to_osteoblast_differentiation__Human_.md
go-cam-reviews/646ff70100002308-SMAD6_arginine_methylation_inhibits_SMAD1_signaling__Human_.md
go-cam-reviews/6482692800002614-Non_canonical_mTORC1_signaling_leading_to_TFEB_and_TFE3_phosphorylation_and_inactivation___Human_.md
go-cam-reviews/627d95ee00001943-Activation_of_PARP1_activity_by_HPF1_during_DNA_repair__Human_.md
go-cam-reviews/60ad85f700001873-epidermal_growth_factor_receptor_signaling_pathway_via_spi_Egfr__D_mel_.md
go-cam-reviews/622aace900000962-Pentose_phosphate_shunt_1__Mouse_.md
go-cam-reviews/633b013300001238-Pyruvate_catabolic_process_1__Mouse_.md
go-cam-reviews/66e382fb00000583-Signaling_by_PACAP_ADCYAP1_mediated_by_PAC1R_ADCYAP1R1_receptor__Human_.md
go-cam-reviews/63d320cd00000317-Activation_of_the_AIM2_inflammasome_in_neural_cells_shapes_neurodevelopment__Mouse_.md
go-cam-reviews/63f809ec00000635-Activity_of_the_RQC_complex_via_ubiquitination_and_degradation_of_incompletely_synthesized_nascent_proteins__by_RQC2_and_RKR1_LTN1__following_ribosome_dissociation__S_cerevisiae__.md
go-cam-reviews/62f58d8800001316-PIV5_V_inhibition_of_STAT1_via_DDB1_CUL4A__Human_Paramyxovirus__.md
go-cam-reviews/60ad85f700000309-Notch_signaling_pathway_via_N_Dl__D_mel_.md
go-cam-reviews/5b528b1100000489-XBP_1_is_a_cell_nonautonomous_regulator_of_stress_resistance_and_longevity.md
go-cam-reviews/66b5638000002701-IL13RA2_mediated_alternative_IL13_pathway_leading_to_TGFB1_production__Human_.md
go-cam-reviews/65d7e4ac00002167-Glycogen_biosynthetic_process__Dmel_.md
go-cam-reviews/62b4ffe300000067-Poxvirus_OPG044_inhibition_of_interferon_beta_induction__Human_Poxvirus_.md
go-cam-reviews/5ee8120100000524-SP_N4BP3on_MAVS.md
go-cam-reviews/6606056e00000576-UBR5_ubiquitinates_ligand_bound_VDR_when_VDR_is_not_associated_with_Nuclear_receptor_coactivators__NCOAs___Human__.md
go-cam-reviews/65288b2200001166-TRIM55_and_TRIM21_mediated_inhibition_of_NFKB2__Human_.md
go-cam-reviews/5fadbcf000000317-Fzd3_function_in_Cranial_neural_crest_cells.md
go-cam-reviews/66a3e0bb00002104-ITPRIPL1_is_a_ligand_of_CD3E_that_negatively_regulates_TCR_signaling_pathway___Human_.md
go-cam-reviews/YeastPathways_GLUCONEO-PWY-1-gluconeogenesis_I___imported_from__Saccharomyces_Genome_Database.md
go-cam-reviews/645d887900001323-14_3_3_sequestering_of_ZNRF2_E3_ligase_leading_to_ATP1A1_activity_at_plasma_membrane__Human_.md
go-cam-reviews/60418ffa00001019-NLRP3_inflammasome_in_pyroptosis_via_nlrp3__caspa__caspb_etc___D__rerio_.md
go-cam-reviews/62f58d8800002485-Protein_import_into_peroxisomes__of_PTS1_containing_proteins_by_the_PEX5_receptor__and_recycling_of_the_PEX5_receptor__Human_.md
go-cam-reviews/663d668500000596-oxidative_phosphorylation__GO_0006119_.md
go-cam-reviews/66187e4700001644-Feedback_regulation_of_growth_hormone_receptor_signaling_pathway_via_ubiquitination_and_degradation_of_GHR_by_the_ECS_SOCS2__complex__Human__.md
go-cam-reviews/635b1e3e00001811-The_NLRP3_inflammasome__Human_.md
go-cam-reviews/633b013300001722-TRIM27_mediated_inhibition_of_starvation_induced_autophagy_via_ubiquitination_of_STK38L_and_ULK1__Human_.md
go-cam-reviews/61283a3000000217-cobalamin_metabolic_process_1__adenosylation_of_cobalamin__Mouse_.md
go-cam-reviews/5fa76ad400000018-AMP_catabolic_process_2__Mouse_.md
go-cam-reviews/62b4ffe300002544-Ilicicolin_H__Neonectria_sp__strain_DH2_.md
go-cam-reviews/66187e4700002284-septation_initiation_signaling__GO_0031028__.md
go-cam-reviews/653b0ce600000721-A_checkpoint_mediated_by_ATR_that_restricts_activation_of_CDK1_during_S_phase___Human__.md
go-cam-reviews/62f58d8800004803-Positive_regulation_of_insulin_secretion_7__Mouse_.md
go-cam-reviews/66b5638000001665-Signaling_by_Calcitonin_mediated_by_CALCA_CT_ligand_activating_CALCR_RAMP2___AMYR2__receptor_complex__Human_.md
go-cam-reviews/645d887900001077-Cell_type_specific__p53_independent_mitotic_G2_DNA_damage_checkpoint_signaling_mediated_by_CREB3L1_in_astrocytes___Mouse_.md
go-cam-reviews/64c3044100000125-Positive_regulation_of_acetylcholine_receptor_transcription__Mouse_.md
go-cam-reviews/65288b2200001267-USP9X_TRIM32_modulation_of_IQCB1_during_G2_M__Human__.md
go-cam-reviews/6413ac9800000256-MYD88_dependent_TLR4_signaling_pathway_leading_to_autophagy_activation__Human_.md
go-cam-reviews/61e0e55600000239-Epidermal_growth_factor_receptor_signaling_pathway_10__Mouse__.md
go-cam-reviews/66a3e0bb00001159-Signaling_by_Adrenomedullin_mediated_by_ADM_ligand_activating_CALCRL_RAMP2_receptor_complex__Human_.md
go-cam-reviews/646ff70100001877-Inhibition_of_the_canonical_mTORC1_signaling_via_ubiquitination_and_degradation_of_LAMTOR1_by_UBE3A__Human_.md
go-cam-reviews/66c7d41500000427-Zika_virus_NS5_inhibition_of_STAT2_signaling_via_ZSWIM8__Human_.md
go-cam-reviews/60ad85f700002694-_de_novo__AMP_biosynthetic_process__Mouse_.md
go-cam-reviews/627d95ee00000275-Heparan_sulfate_proteoglycan_catabolic_process__Mouse_.md
go-cam-reviews/60ad85f700000058-Atf2_mouse.md
go-cam-reviews/6482692800002523-Molybdopterin_Cofactor_Biosynthetic_Process_1__Mouse_.md
go-cam-reviews/623d156d00000939-Glycogen_catabolic_process_3__Mouse_.md
go-cam-reviews/62b4ffe300003747-_Response_to_IFN_beta__leading_to_JAK_STAT_activation__Human_.md
go-cam-reviews/6438950a00000624-Activation_of_the_WNK1_SPAK_OSR1_kinase_cascade_in_response_to_hyperosmotic_stress__leading_to_promote_ion_influx_and_prevent_ion_efflux__Human_.md
go-cam-reviews/65c57c3400002666-Role_of_CD53_in_T_cell_receptor_signaling_pathway__Human_.md
go-cam-reviews/6606056e00000234-CD69_OxydizedLDL_pair_leading_to_PD_1_expression_in_T_cells__Human_.md
go-cam-reviews/66b5638000000739-Inhibition_of_the_PERK_mediated_unfolded_protein_response_by_HSPA5_BiP_in_absence_of_stress__Human__.md
go-cam-reviews/63c0ac2b00000267-IRGM_governs_the_core_autophagy_machinery_to_conduct_antimicrobial_defense__Human_.md
go-cam-reviews/65288b2200000194-STING1_acts_as_a_proton_channel_and_promotes_autophagosome_assembly__Human_.md
go-cam-reviews/623d156d00000029-Glycogen_biosynthetic_process__Mouse_.md
go-cam-reviews/63a86a8600000805-Positive_regulation_of_transcription_from_RNA_polymerase_II_promoter_by_glucose_3__Mouse_.md
go-cam-reviews/6413ac9800000654-MYD88_independent_TLR4_signaling_pathway_leading_to_interferon_production__Human_.md
go-cam-reviews/5e72450500004237-SARS_COV2_cycle.md
go-cam-reviews/663d668500002178-phosphatidylinositol_phosphate_phosphatidylinositol__biosynthetic_process__GO_0006661__GO_0043647___.md
go-cam-reviews/60ad85f700000259-activin_receptor_signaling_pathway_via_Actbeta_babo_put__D_mel_.md
go-cam-reviews/63894f2500002043-Positive_regulation_of_glycolytic_process_1__Mouse_.md
go-cam-reviews/62b4ffe300005697-HHV1_US3_inhibition_of_host_RIG_I_signaling__Human_Herpesvirus__.md
go-cam-reviews/60ff660000000917-GMP_salvage_3__from_adenine__Mouse_.md
go-cam-reviews/632cf60a00000788-USP20_mediated_STING_deubiquitination_leading_to_STING_stabilisation__Human_.md
go-cam-reviews/66f5faaa00000112-TRAF6_and_HUWE1_catalyze_branched_linked_polyubiquitination_that_promote_NF_kappa_B_signaling__Human__.md
go-cam-reviews/6348a65d00000594-Granzyme_mediated__GZMA__activation_of_pyroptosis__GSDMB_isoform_4___Human_.md
go-cam-reviews/5fadbcf000000868-dUMP_catabolic_process__Mouse_.md
go-cam-reviews/63e5937500000106-Activation_of_the_GCN2_mediated_signaling_by_GCN1_in_response_to_ribosome_collisions_and_inhibition_of_GCN2_by_HEL2__S_cerevisiae_.md
go-cam-reviews/65c57c3400000359-Dosage_compensation_in_male_Drosophila_by_the_MSL_complex__composed_of_mle__msl_1__msl_2__msl_3_and_mof___D_melanogaster__.md
go-cam-reviews/663d668500000226-VIF_mediated_inhibition_of_STING_by_PTPN6__Human_HIV_.md
go-cam-reviews/6606056e00001507-TREM2_activated_by_APOA2___Human_.md
go-cam-reviews/62b4ffe300002385-Arginine_ADP_riboxanation_of_CASP4__by__by_S_flexneri_OspC3_that_blocks_CASP4_activity_and_pyroptosis__Human_.md
go-cam-reviews/5fadbcf000002236-dCMP_catabolic_process__Mouse_.md
go-cam-reviews/65c57c3400001115-Inhibition_of_SMDT1_EMRE_and_MCU_following_cleavage_by_the_m_AAA_protease_complex__composed_of_AFG3L2_and_SPG7___Human__.md
go-cam-reviews/6205c24300000880-Regulation_of_cholesterol_biosynthesis_by_SREBP__SREBF1_and_SREBF2__and_retention_by_the_SREBP_SCAP_complex__Human_.md
go-cam-reviews/62900b6400002267-Casp7_activates_Smpd1_to_repair_Gasdermin_pores_in_intestinal_epithelial_cells___Mouse_.md
go-cam-reviews/63e5937500000215-Activation_of_the_No_Go_decay__NGD__pathway_in_response_to_ribosome_collision_by_HEL2__leading_to_ubiquitination_of_RPS7_eS7__recruitment_of_CUE2_and_mRNA_degradation__S_cerevisiae__.md
go-cam-reviews/61e0e55600001295-NLRP1_inflammasome_leading_to_pyroptosis__Human_.md
go-cam-reviews/66b5638000001719-AKT1_inhibits_EIF2AK3_PERK___Human__.md
go-cam-reviews/5f46c3b700001407-TBK1_activation_via_TRAF3_autoubiquitination__Human_.md
go-cam-reviews/60ff660000001341-AMP_salvage_2b__from_adenosine__Mouse_.md
go-cam-reviews/654d809000000112-SQSTM1_is_involved_in_aggrephagy_by_mediating_recruitment_of_ubiquitinated_proteins_to_autophagosomes__Human__.md
go-cam-reviews/6606056e00001371-APP_clearance_through_CLU_TREM2_interaction___Human_.md
go-cam-reviews/613aae0000001005-SP_ANN_RECQL5.md
go-cam-reviews/65d7e4ac00002427-MICA_NKG2D_mediated_NK_cell_cytotoxicity__Human_.md
go-cam-reviews/5fadbcf000001646-SP_SIK2_actvity_on_P300.md
go-cam-reviews/653b0ce600000432-TRIM32_TAX1BP1_dependent_selective_autophagic_degradation_of_TICAM1__Human_.md
go-cam-reviews/66a3e0bb00000156-Positive_regulation_of_cholesterol_biosynthesis_by_PAQR3_by_anchoring_SREBF1_SCAP_complex_to_the_Golgi____Human_.md
go-cam-reviews/62b4ffe300004795-Insulin_receptor_signaling_pathway_1__Mouse_.md
go-cam-reviews/662af8fa00002225-Gsdmd_palmitoylation_by_Zdhhc5_and_Zdhhc9_promotes_pyroptosis__Mouse_.md
go-cam-reviews/65f3ae5c00002132-Control_of_GABAAR_clustering_to_GABAergic_synapses_by_Gephyrin__Human_.md
go-cam-reviews/6606056e00002011-CD72_and_BCR_co_stimulation_by_sn_RNP_self_antigen__Human_.md
go-cam-reviews/6348a65d00002236-USP44_mediated_deubiquitination_of_CDC20_controlling_anaphase_initiation__Human_.md
go-cam-reviews/62b4ffe300006376-HHV1_UL37_inhibition_of_host_RIG_I_signaling_via_RIG_I_deamidation__Human_Herpesvirus__.md
go-cam-reviews/63c0ac2b00000506-Degradation_of_NMNAT2_via_the_PAM__SKP1_FBXO45_MYCBP2__E3_ligase_complex__Human_.md
go-cam-reviews/67086be200002266-sphingolipid_biosynthetic_process__GO_0030148_.md
go-cam-reviews/65c57c3400000000-Inhibition_of_the_GDF15_GFRAL_aversive_signaling_pathway_following_cleavage_of_GFRAL_by_MMP14__Human__.md
go-cam-reviews/6438950a00000074-Human_metapneumovirus_M2_2_inhibition_of_RIGI_MAVS_signaling__Human_Metapneumovirus__.md
go-cam-reviews/61f34dd300000981-Regulation_of_gluconeogenesis_by_SIRT6__FOXO1_and_KAT2A_GCN5__Human_.md
go-cam-reviews/623d156d00000673-IL5_mediated_signaling_pathway__Human_.md
go-cam-reviews/62f58d8800002184-positive_regulation_of_insulin_secretion_involved_in_cellular_response_to_glucose_stimulus__Mouse_.md
go-cam-reviews/613aae0000000341-cobalamin_transport_2__distribution_to_tissues__Mouse_.md
go-cam-reviews/66187e4700002082-The_erythropoietin_mediated_signaling_pathway__Human__.md
go-cam-reviews/66187e4700001781-silent_mating_type_cassette_heterochromatin_assembly__GO_0030466__.md
go-cam-reviews/646ff70100004973-USP38_Lys_33_to_Lys_48_transition_on_TBK1_leading_to_its_degratdation__Human_.md
go-cam-reviews/60e7989d00000165-dTMP_biosynthetic_process1A__Mouse_.md
go-cam-reviews/639bc18f00000430-Negative_regulation_of_glycolytic_process_through_fructose_6_phosphate_2__Mouse_.md
go-cam-reviews/66a3e0bb00001742-Signaling_by_Calcitonin_CGRP_mediated_by_CALCB_CGRP2_ligand_activating_CALCRL_RAMP1_receptor_complex__Human_.md
go-cam-reviews/62900b6400000076-Histone_poly_ADP_ribosylation_of_histone_H2B_at_Glu_35_by_Parp1_that_prevents_phosphorylation_at_of_histone_H2B_at_Ser_36_by_Prkaa1__Mouse_.md
go-cam-reviews/62b4ffe300003248-Poxvirus_OPG029_inhibition_of_host_HDAC4_STAT2__Human_Poxvirus__.md
go-cam-reviews/66187e4700000318-The_CRL5_ASB11__complex_mediates_ubiquitination_and_degradation_of_BIK_in_response_to_endoplasmic_reticulum_stress__Human__.md
go-cam-reviews/5fce9b7300000367-BMP2_SMAD_signaling_mouse.md
go-cam-reviews/65c57c3400001478-Negative_regulation_of_Hippo_signaling_by_SLMAP_STRIPAK_complex__Human__.md
go-cam-reviews/66a3e0bb00002988-pteridine_containing_compound_metabolic_process__GO_0042558_.md
go-cam-reviews/65f3ae5c00001022-UFL1_negatively_regulates_T_cell_activation_by_mediating_ufmylation_of_PDCD1_PD_1__Human__.md
go-cam-reviews/66c7d41500000163-Signaling_by_Calcitonin_CGRP_mediated_by_CALCA_CGRP1_ligand_activating_CALCR_RAMP1__AMYR1__receptor_complex__Human_.md
go-cam-reviews/65288b2200000496-Regulation_of_CGAS_activity_via_palmitoylation_and_depalmitoylation_by_ZDHHC9_and_LYPLAL1__respectively__Human__.md
go-cam-reviews/66a3e0bb00002740-TMEFF1_restricts_herpes_simplex_virus_1__HHV_1__infection_in_the_brain_by_blocking_the_association_between_NECTIN1_and_the_viral_envelope_glycoprotein_D__Human__.md
go-cam-reviews/65d7e4ac00000022-CARD9_regulation_by_TRIM62_USP15__Human_.md
go-cam-reviews/5fadbcf000000942-dTMP_catabolic_process__Mouse_.md
go-cam-reviews/62b4ffe300003074-Poxvirus_OPG029_inhibition_of_host_TBK1_adaptor_TANK__Human_Poxvirus__.md
go-cam-reviews/61e0e55600000407-SP_GADD34__PPP1CA.md
go-cam-reviews/66c7d41500000715-CLEC12A_acts_as_an_inhibitor_of_neutrophil_activation__Human__.md
go-cam-reviews/66e382fb00000449-Signaling_by_PACAP_ADCYAP1_mediated_by_VIPR2_receptor__Human_.md
go-cam-reviews/6258b8f300000398-Heparan_sulfate_proteoglycan_biosynthetic_process__Mouse_.md
go-cam-reviews/62b4ffe300003382-Poxvirus_OPG038_inhibition_of_host_CD80_CD86__Human_Poxvirus__.md
go-cam-reviews/61e0e55600000430-Epidermal_growth_factor_receptor_signaling_pathway_11__Mouse_.md
go-cam-reviews/66187e4700001573-RNA_capping__GO_0036260_.md
go-cam-reviews/6482692800001393-Biotin_Metabolic_Process_1__Mouse_.md
go-cam-reviews/61e0e55600001225-Gluconeogenesis_1__Mouse_.md
go-cam-reviews/62d0afa500001077-Insulin_like_growth_factor_receptor_signaling_pathway_1__Mouse_.md
go-cam-reviews/6516135700000380-Heme_A_biosynthetic_process__Mouse_.md
go-cam-reviews/60418ffa00001536-Deoxyguanosine_catabolic_process__Mouse_.md
go-cam-reviews/623d156d00000699-Glycogen_catabolic_process_1__Mouse_.md
go-cam-reviews/6258b8f300000188-Chondroitin_sulfate_biosynthetic_process_1__chondroitin_6_sulfate_proteoglycans__Mouse_.md
go-cam-reviews/60d5209a00001406-_de_novo__XMP_biosynthetic_process__Mouse_.md
go-cam-reviews/622aace900000790-Galactose_catabolic_process_via_UDP_galactose.md
go-cam-reviews/62f58d8800004064-Positive_regulation_of_insulin_secretion_4___Mouse_.md
go-cam-reviews/66f5faaa00001204-Retinoid_Metabolic_Process_1__Mouse__.md
go-cam-reviews/646ff70100005032-HCMV_UL138_substains_STAT1_activation_during_viral_latency__Human_Cytomegalovirus_.md
go-cam-reviews/65f3ae5c00000111-Ufmylation_pathway__Human__.md
go-cam-reviews/62b4ffe300000081-CASP7_activates_SMPD1_to_repair_perforin_pores_in_hepatocytes__Human_.md
go-cam-reviews/66c7d41500002513-DDX39A_inhibition_of_immune_related_RNA_export_to_the_cytoplasm__Human_.md
go-cam-reviews/YeastPathways_TCA-EUK-PWY-TCA_cycle__aerobic_respiration___imported_from__Saccharomyces_Genome_Database.md
go-cam-reviews/6446bfcb00000544-Negative_regulation_of_epidermal_growth_factor_receptor_signaling_pathway_2__Mouse_.md
go-cam-reviews/60ad85f700000189-BMP_signaling_pathway_via_dpp_tkv_put__D_mel_.md
go-cam-reviews/6690711d00001806-SIRT1_mediates_delactylation_of_YAP1_and_TEAD1__promoting_inactivation_of_Hippo_signaling__Human__.md
go-cam-reviews/62b4ffe300005342-Poxvirus_OPG179_inhibition_of_host_NF_kappa_B_via_BTRC__Human_Poxvirus__.md
go-cam-reviews/623d156d00000340-IL3_mediated_signaling_pathway__Human_.md
go-cam-reviews/66b5638000001968-PVR_TIGIT_pair_inhibits_NK_cell_mediated_cytotoxicity__Human_.md
go-cam-reviews/62f58d8800001500-Insulin_processing_1__Mouse_.md
go-cam-reviews/5fadbcf000002042-CMP_catabolic_process__Mouse_.md
go-cam-reviews/646ff70100003125-Inhibition_of_the_canonical_mTORC1_signaling_by_NLK_in_response_to_osmotic_stress__Human_.md
go-cam-reviews/5b91dbd100002057-Antifungal_innate_immune_response_in_the_hypodermis_via_MAPK_cascade__C__elegans_.md
go-cam-reviews/6348a65d00002600-Negative_regulation_of_white_adipogenesis_by_OVOL2___Human_.md
go-cam-reviews/62f58d8800004529-Positive_regulation_of_insulin_secretion_6__Mouse_.md
go-cam-reviews/663d668500001911-purine_nucleobase_metabolic_process__GO_0006144__.md
go-cam-reviews/6494e2e900002018-Glyceraldehyde_3_phosphate_biosynthetic_process_1__Mouse_.md
go-cam-reviews/61b2b68300000203-ERBB2_ERBB4_signaling_pathway_3__Mouse__.md
go-cam-reviews/6246724f00001645-hyaluronan_biosynthetic_process__Mouse_.md
go-cam-reviews/6690711d00002904-L_histidine_biosynthetic_process__GO_0000105_.md
go-cam-reviews/65d7e4ac00002808-MCUB_inhibits_mitochondrial_calcium_uptake_by_the_uniplex_complex__composed_of_SMDT1_EMRE__MICU1__MICU2_and_MCU__to_prevent_calcium_overload__Human__.md
go-cam-reviews/5f46c3b700001031-MYD88_dependent_TLR4_signaling_pathway_leading_to_NF_kappa_B_activation__Human_.md
go-cam-reviews/6690711d00001771-AARS1_mediates_lactylation_of_YAP1_and_TEAD1__promoting_activation_of_Hippo_signaling__Human__.md
go-cam-reviews/66187e4700002704-Inhibition_of_reelin_signaling_via_ubiquitination_and_degradation_of_DAB1_by_the_ECS_SOCS7__complex_in_the_cortical_plate_of_the_developing_cerebral_cortex__Human__.md
go-cam-reviews/6446bfcb00000006-Triglyceride_biosynthetic_process_2__Mouse_.md
go-cam-reviews/63e5937500000284-18S_rRNA_degradation_in_response_to_ribosome_collision_by_HEL2__leading_to_ubiquitination_of_RPS3_uS3_by_MAG2__RSP5_and_HEL2_and_rRNA_degradation__S_cerevisiae__.md
go-cam-reviews/63c0ac2b00000547-Staphylococcal_HlgB_activation_of_NF_kappa_B_via_AMFR_and_TAB3__Human_Staphylococcus_Aureus_.md
go-cam-reviews/66187e4700002129-Feedback_regulation_of_erythropoietin_mediated_signaling_via_ubiquitination_and_degradation_of_EPOR_by_the_ECS_SOCS2__complex__Human__.md
go-cam-reviews/663d668500001492-TRAIL_TRAILR2_interaction_leading_to_apoptosis.md
go-cam-reviews/62900b6400000022-Mono_ADP_ribosylation_of_ribosome_subunits_by_PARP16__Human_.md
go-cam-reviews/626b20c100000185-Glycosaminoglycan_biosynthetic_process__linker_formation__Mouse_.md
go-cam-reviews/6438950a00000714-Regulation_of_ion_transport_in_the_distal_nephron_by_WNK4__Human_.md
go-cam-reviews/5fce9b7300000434-BMP2_MAPK_signaling_mouse.md
go-cam-reviews/6606056e00001890-Activation_of_mitophagy__in_response_to_mitochondrial_damage_via_activation_of_EIF2AK1_HRI_by_DELE1__Human__.md
go-cam-reviews/627d95ee00000955-Chondroitin_sulfate_catabolic_process__Mouse_.md
go-cam-reviews/627d95ee00001988-Regulation_of_Parp1_activity_by_Cgas__Setd7_and_Riox1__Mouse_.md
go-cam-reviews/66c7d41500000544-CAAX_box_protein_maturation_1__Mouse_.md
go-cam-reviews/62e3212700000469-Insulin_like_growth_factor_receptor_signaling_pathway_2__Mouse__.md
go-cam-reviews/645d887900000706-Smog_GPCR_signaling___epithelial_tube_formation__D_mel__.md
go-cam-reviews/66e382fb00002293-Signaling_by_Secretin_SCT_mediated_by_SCTR_receptor__Human_.md
go-cam-reviews/64e7eefa00001299-RBM33_binds_N6_methyladenosine__m6A__containing_mRNAs_and_promotes_their_demethylation_by_ALKBH5_RNA_demethylase__Human_.md
go-cam-reviews/6494e2e900001496-MPEG1_perforin_2_forms_a_pore_for_to_deliver_antigens_for_cross_presentation__Human_.md
go-cam-reviews/62f58d8800000011-Inactivation_of_GSDMD_by_Protease_3C_from__Human_enterovirus_71__EV71___Human_.md
go-cam-reviews/YeastPathways_PWY-5084-2_oxoglutarate_decarboxylation_to_succinyl_CoA___imported_from__Saccharomyces_Genome_Database.md
go-cam-reviews/5df932e000000330-Protease_activity_in_epithelial_morphogenesis_via_f2rl1_2__spint1a__st14a__D__rerio_.md
go-cam-reviews/645d887900001414-ZNFR1_mediated_TLR4_signaling_pathway_via_CAV1_ubiquitination_and_degradation__Human_.md
go-cam-reviews/62e3212700000746-Insulin_like_growth_factor_receptor_signaling_pathway_3__Mouse_.md
go-cam-reviews/62f58d8800002367-Protein_import_into_peroxisomes__of_PTS1_containing_proteins_by_the_PEX5_receptor__and_recycling_of_the_PEX5_receptor__S_cerevisiae_.md
go-cam-reviews/62b4ffe300002512-Ochratoxin_biosynthesis_in_A__carbonarius.md
go-cam-reviews/635b1e3e00000433-Xylulose_5_Phosphate_biosynthetic_process_2__Mouse_.md
go-cam-reviews/YeastPathways_PWY3O-20-folate_polyglutamylation___imported_from__Saccharomyces_Genome_Database.md
go-cam-reviews/63d320cd00000225-Activation_of_the_AIM2_inflammasome_in_response_to_DNA_damage__Mouse_.md
go-cam-reviews/62d0afa500000298-Gluconeogenesis_3__Mouse_.md
go-cam-reviews/6690711d00002652-RNH1_inhibits_the_tRNA_ribonuclease_activity_of_ANG_in_the_cytoplasm_in_absence_of_stress__Human__.md
go-cam-reviews/6690711d00002607-ANG_tRNA_ribonuclease_activity_inhibits_translation_in_response_to_stress__Human__.md
go-cam-reviews/62b4ffe300002470-Ochratoxin_A_biosynthesis___catabolism__A__niger_.md
go-cam-reviews/6197061700001485-Silencing_of_fetal_hemoglobin__by_ZNF410__Human_.md
go-cam-reviews/623d156d00000290-IL4_mediated_signaling_pathway__human_.md
go-cam-reviews/65288b2200000643-STING1_trafficking_from_the_endoplasmic_reticulum_and_the_ERGIC_following_phosphorylation_by_MAP3K7_TAK1_and_interaction_with_STEEP1__Human_.md
go-cam-reviews/654d809000000248-Regulation_of_aggrephagy_via_phosphorylation_of_SQSTM1_by_CK2__Human__.md
go-cam-reviews/62b4ffe300000504-Poxvirus_OPG065_inhibition_of_ZBP1_mediated_necroptosis__Human_Poxvirus__.md
go-cam-reviews/60ff660000000882-GMP_salvage_2a__from_adenosine__Mouse_.md
go-cam-reviews/59dc728000000555-_Wnt_FGF_Notch_signaling_inregulation_of_HSC_specification_via_dlc__dld__fgfr4__wnt16__D__rerio_.md
go-cam-reviews/62b4ffe300000010-CASP7_activates_SMPD1_to_repair_Gasdermin_pores_in_intestinal_epithelial_cells__Human_.md
go-cam-reviews/6494e2e900000187-TRAF7_modulation_of_NF_kappa_B_via_IKBKG_and_NEMO_K_29_ubquitination__Human_.md
go-cam-reviews/662af8fa00002332-CD28_GRB2_axis_leading_to__RAS_activation__Human__.md
go-cam-reviews/617b481400000793-KAT5_autoacetylation_and_deacetylation_by_HDAC3_and_SIRT1__Human_.md
go-cam-reviews/66a3e0bb00002890-Thrombopoeitin_mediated_signaling_pathway__Human_.md
go-cam-reviews/66e382fb00000254-Signaling_by_Vasoactive_Intestinal_Peptide_VIP_mediated_by_VIPR2_receptor__Human_.md
go-cam-reviews/64c3044100001787-Inhibition_of_cGAS_STING_signaling_in_the_nucleus_by_BANF1__Human_.md
go-cam-reviews/62b4ffe300002753-Poxvirus_OPG106_inhibition_of_interferon_gamma_signaling__Human_Poxvirus__.md
go-cam-reviews/665912ed00000192-GPI__anchor_biosynthetic_process__GO_0006506_.md
go-cam-reviews/6348a65d00000724-Regulation_by_IL22_and_Reg3g_of_allergic_airway_inflammation___Mouse__.md
go-cam-reviews/6482692800001514-Inactivation_of_the_canonical_mTORC1_signaling_via_phosphorylation_of_WDR24_by_AMPK_in_response_to_glucose_starvation__Human_.md
go-cam-reviews/62900b6400002552-Cobalamin_transport__into_enterocytes__Mouse_.md
go-cam-reviews/6606056e00000903-Activation_of_the_integrated_stress_response_via_activation_of_EIF2AK1_HRI_by_DELE1_in_response_to_mitochondrial_stress__Human_.md
go-cam-reviews/62d0afa500000472-Insulin_receptor_signalling_pathway_3__Mouse_.md
go-cam-reviews/663d668500001246-Pyroptotic_cell_death_mediated_by_GSDMD_and_NINJ1__Human__.md
go-cam-reviews/6246724f00001700-Hyaluronan_catabolic_process__Mouse_.md
go-cam-reviews/62900b6400002353-Casp7_activates_Smpd1_to_repair_perforin_pores_in_hepatocytes__Mouse_.md
go-cam-reviews/66a3e0bb00001633-Signaling_by_Adrenomedullin_mediated_by_ADM2_ligand_activating_CALCRL_RAMP3_receptor_complex__Human_.md
go-cam-reviews/63a86a8600001386-Triglyceride_biosynthetic_process_1__Mouse_.md
go-cam-reviews/63894f2500001748-FRM1_binds_N6_methyladenosine__m6A__containing_mRNAs_and_promotes_their_nuclear_export__Human_.md
go-cam-reviews/636d9ce800001222-DCAF12_controls_MOV10_during_spermatogeneis___Human_.md
go-cam-reviews/66187e4700002778-The_reelin_signaling_pathway__Human__.md
go-cam-reviews/6606056e00000767-ITCH_and_UBR5_catalyzed_branched_linked_polyubiquitination_of_TXNIP__Human__.md
go-cam-reviews/645d887900000671-Osteocalcin__bglap__hormone_produced_by_osteoblasts_binds_Gprc6a__receptor_and_regulates_testosterone_biosynthesis_and_male_fertility__Mouse__.md
go-cam-reviews/5f46c3b700003802-dGMP_catabolic_process_to_allantoin__Mouse_.md
go-cam-reviews/626b20c100000681-IL10_mediated_signaling_pathway__Human_.md
go-cam-reviews/66b5638000001589-Activation_of_the_integrated_stress_response_via_activation_of_EIF2AK3_PERK_in_response_to_unfolded_protein_response_promotes_expression_of_COX7A2L_SCAF1__increasing_formation_of_respiratory_chain_supercomplexes__Human__.md
go-cam-reviews/5966411600000170-Intestinal_smooth_muscle_cell_differentiation_via_foxo1a__mir145__tgfr1b__ltbp3__zeb1a__D__rerio_.md
go-cam-reviews/5fb9cc0600000156-circadian_rhythm_and_hematopoiesis_via_ezh2__per1b__cry1a_etc___D__rerio_.md
go-cam-reviews/627d95ee00002030-Activation_of_PARP2_activity_by_HPF1_during_DNA_repair__Human_.md
go-cam-reviews/6348a65d00000848-Regulation_by_IL22_and_REG3A_of_allergic_airway_inflammation___Human__.md
go-cam-reviews/6516135700000961-Heme_O_biosynthetic_process__Mouse_.md
go-cam-reviews/61b2b68300000000-NLRP6_inflammasome__Human_.md
go-cam-reviews/63f809ec00000701-tRNA_repair_and_recycling_by_ANKZF1__ELAC1_and_TRNT1_following_activity_of_the_RQC_complex_in_response_to_stalled_ribosomes__Human_.md
go-cam-reviews/65d7e4ac00002435-MICU3_promotes_mitochondrial_calcium_uptake_by_MCU_in_the_central_nervous_system__Human__.md
go-cam-reviews/639bc18f00000090-Isg12a_K6_ubiquitination_by_TRIM21_leading_to_pyroptosis__Human_.md
go-cam-reviews/6690711d00002821-tryptophan_biosynthetic_process__GO_0000162_.md
go-cam-reviews/64c3044100000089-Skeletal_muscle_acetylcholine_gated_channel_clustering_1__Mouse_.md
go-cam-reviews/65d7e4ac00000082-DUSP22_inhibition_of_TCR_signaling_via_UBR2_inhibition__Human_.md
go-cam-reviews/613aae0000000500-cobalamin_metabolic_process_3__methylation_of_cobalamin__Mouse_.md
go-cam-reviews/636d9ce800000147-Cellular_response_to_glucagon_stimulus__Mouse_.md
go-cam-reviews/66c7d41500000841-heme_biosynthetic_process__GO_0006783_.md
go-cam-reviews/66b5638000002528-GRIM1_activates_GRID1_via_GNAQ_in_dopamine_neurons__Mouse__.md
go-cam-reviews/63f809ec00000512-Activity_of_the_RQC_complex_via_ubiquitination_and_degradation_of_incompletely_synthesized_nascent_proteins__by_NEMF_and_LTN1__following_ribosome_dissociation__Human_.md
go-cam-reviews/62e3212700001956-Activation_of_the_NLRP1_inflammasome_by_isoform_ZAKalpha_of_MAP3K20_in_response_to_UV_B_irradiation_and_ribotoxic_stress__Human_.md
go-cam-reviews/60d5209a00000521-torso_signaling_pathway__D_mel_.md
go-cam-reviews/6246724f00000549-Renin_angiotensin_pathway__Human_.md
go-cam-reviews/64d5781900000111-Activation_of_cGAS_STING_signaling_following_acetylation_by_KAT5__Human_.md
go-cam-reviews/5ce58dde00001215-Mouse_Aatf_antiapoptosis.md
go-cam-reviews/66e382fb00000408-Signaling_by_PACAP_ADCYAP1_mediated_by_VIPR1_receptor__Human_.md
go-cam-reviews/6482692800001029-_Activation_of_the_canonical_mTORC1_signaling_by_GATOR2__which_inactivates_GATOR1_in_response_to__abundant_amino_acids__Human_.md
go-cam-reviews/63e5937500000591-Activation_of_the_ribosome_quality_control_by_ZNF598_in_response_to_ribosome_collisions__leading_to_ubiquitination_of_RPS20_us10_and_ribosome_dissociation_by_the_RQT_complex__composed_of_ASCC2_and_ASCC3__Human__.md
go-cam-reviews/5fce9b7300001616-SPModule_PGRP1_S100A4.md
go-cam-reviews/5b91dbd100002241-Antifungal_innate_immune_response_in_the_hypodermis_via_transforming_growth_factor_beta_receptor_signaling_pathway__C__elegans_.md
go-cam-reviews/67086be200002705-Retinoid_Metabolic_Process_4__Mouse__.md
go-cam-reviews/60418ffa00001643-Deoxyinosine_catabolic_process__Mouse_.md
go-cam-reviews/62183af000000536-DNA_damage_sensor_activity_of_SIRT6_and_its_regulation_by_SIRT1__Human_.md
go-cam-reviews/63a86a8600001720-The_non_canonical_inflammasome_mediated_by_Casp11_upon_lipopolysaccharide_binding__Mouse_.md
go-cam-reviews/66e382fb00000178-Signaling_by_Vasoactive_Intestinal_Peptide_VIP_mediated_by_VIPR1_receptor__Human_.md
go-cam-reviews/6086f4f200000223-canonical_Wnt_signaling_pathway_via_wg_fz2__D_mel_.md
go-cam-reviews/5fb9cc0600000627-Regulation_of_macrophage_differntiation_via_irf2bp2b__cebpa__spi1b__D__rerio_.md
go-cam-reviews/6494e2e900001469-Mpeg1_perforin_2_forms_a_pore_for_to_deliver_antigens_for_cross_presentation__Mouse_.md
go-cam-reviews/5f46c3b700001570-SPModule_TBK1_IRF3.md
go-cam-reviews/66a3e0bb00001687-Signaling_by_Calcitonin_CGRP_mediated_by_CALCA_CGRP1_ligand_activating_CALCRL_RAMP1_receptor_complex__Human_.md
go-cam-reviews/622aace900000443-Fructose_catabolic_process__Mouse_.md
go-cam-reviews/62b4ffe300000335-Perforin_maturation_leading_to_granzyme_mediated_programmed_cell_death_signaling_pathway__Human_.md
go-cam-reviews/60e7989d00000281-UDP_biosynthetic_process__Mouse_.md
go-cam-reviews/65bc474400000955-Negative_regulation_of_Hippo_signaling_by_STRIPAK_complex_via_STRN4_MAP4K4_Human__.md
go-cam-reviews/617b481400003575-SP_RNF169.md
go-cam-reviews/61e0e55600001659-Granzyme_mediated__GZMB__activation_of_pyroptosis__GSDME___Human_.md
go-cam-reviews/62b4ffe300003679-Poxvirus_OPG200_inhibition_of_host_IKBKE_mediated_NF_Kappa_B__Human_Poxvirus__.md
go-cam-reviews/6246724f00000675-IL7_mediated_signaling_pathway__Human_.md
go-cam-reviews/6205c24300001663-IL2_signaling_pathway__Human_.md
go-cam-reviews/67086be200000363-cardiolipin_metabolic_process__GO_0032048___Spom_.md
go-cam-reviews/62b4ffe300005096-Poxvirus_OPG022_inhibition_of_host_IL18_signaling_pathway__Human_Poxvirus__.md
go-cam-reviews/64e7eefa00001233-Extrinsic_apoptotic_signaling_pathway_via_death_domain_receptors_1_Mouse_.md
go-cam-reviews/62b4ffe300005181-Poxvirus_OPG003_inhibition_of_host_NF_kappa_B_pathway_via_NFKB1__Human_Poxvirus__.md
go-cam-reviews/6446bfcb00001208-Thiamine_diphosphate_biosynthetic_process_1__Mouse_.md
go-cam-reviews/663d668500003182-TGFB2_mediated_signaling_pathway__Human_.md
go-cam-reviews/6482692800000330-Regulation_of_the_canonical_mTORC1_signaling__via_deubiquitination_of_RHEB_by_ATXN3_in_response_to_starvation__Human_.md
go-cam-reviews/65c57c3400002539-The_CRL5_ASB11__complex_mediates_ubiquitination_and_degradation_of_DIRAS2__Human__.md
go-cam-reviews/5745387b00001516-Canonical_glycolysis_1__Mouse_.md
go-cam-reviews/61f34dd300000863-PKM2_acetylation_by_EP300_and_deacetylation_by_SIRT6_leading_to_conversion_into_a_protein_kinase__Human_.md
go-cam-reviews/62b4ffe300005623-HHV1_US3_inhibition_of_host_TCR_signaling_via_LAT__Human_Herpesvirus__.md
go-cam-reviews/636d9ce800001192-DCAF12_controls_MOV10_during_T_cell_activation___Human_.md
go-cam-reviews/66a3e0bb00002793-TMEFF1_restricts_herpes_simplex_virus_1__HHV_1__in_the_brain_by_blocking_the_association_between_MYH10_and_the_viral_envelope_glycoprotein_B__Human__.md
go-cam-reviews/62f58d8800003012-Positive_regulation_of_insulin_secretion_2___Mouse_.md
go-cam-reviews/633b013300000089-Positive_regulation_of_insulin_secretion_11___Mouse_.md
go-cam-reviews/62b4ffe300005506-Poxvirus_OPG182_inhibition_of_host_NF_kappa_B_via_IRAK2__Human_Poxvirus__.md
go-cam-reviews/66187e4700003150-adenylate_cyclase_activating_G_protein_coupled_receptor_signaling_pathway__GO_0007189_.md
go-cam-reviews/66b5638000001772-Signaling_by_Calcitonin_mediated_by_CALCA_CT_ligand_activating_CALCR_receptor__Human_.md
go-cam-reviews/665912ed00001983-subtelomeric_heterochromatin_formation__GO_0031509_.md
go-cam-reviews/6482692800001739-Inhibition_of_the_canonical_mTORC1_signaling_via_phosphorylation_of_RPTOR_by_AMPK_in_response_to_glucose_starvation__Human_.md
go-cam-reviews/6348a65d00000661-Cytotoxic_T_cell_pyroptosis_mediated_by_GSDMB_isoform_1_in_response_to_infection_by_Gram_negative_bacteria_and_its_inhibition_by_S_flexneri_IpaH7_8__Human_and_S_flexneri_.md
go-cam-reviews/635b1e3e00002004-Activation_of_the_NLRP3_inflammasome_by_MAPK8_JNK1_and_BRCC3__Human_.md
go-cam-reviews/613aae0000000011-SP_ANN_SEC14L1.md
go-cam-reviews/66a3e0bb00001036-IGF1_mediated_signaling_via_IGF1R_receptor__Human_.md
go-cam-reviews/6438950a00000032-Human_metapneumovirus_M2_2_inhibition_of_IRF7__Human_Metapneumovirus_.md
go-cam-reviews/61b2b68300000617-ERBB2_ERBB3_receptor_signaling_pathway_involved_in_myelination_1__Mouse_.md
go-cam-reviews/641ce4dc00000914-Activation_of_Nf_kappa_B_via_ubiquitination_and_degradation_of_the_NF_kappa_B_inhibitor__Human_.md
go-cam-reviews/67086be200001601-Fertilization_complex_allows_sperm_egg_recognition_during_fertilization___Human_.md
go-cam-reviews/646ff70100000391-Canonical_mTORC1_signaling__Human_.md
go-cam-reviews/6197061700002226-ERBB2_ERBB4_signaling_pathway_2__Mouse__.md
go-cam-reviews/626b20c100000443-Regulation_of_gluconeogenesis_by_TOX4__Mouse_.md
go-cam-reviews/5fa76ad400000265-dAMP_catabolic_process_to_allantoin__Mouse_.md
go-cam-reviews/653b0ce600000382-TAX1BP1_mediated_degradation_of_MAVS_by_E3_ligase_ITCH__Human_.md
go-cam-reviews/6197061700000593-ERBB2_EGFR_signaling_pathway_1__Mouse_.md
go-cam-reviews/60418ffa00000327-Xanthine_catabolic_process__Mouse_.md
go-cam-reviews/635b1e3e00000382-Xylulose_5_Phosphate_biosynthetic_process_1__Mouse_.md
go-cam-reviews/63c0ac2b00000008-The_AIM2_inflammasome__Human_.md
go-cam-reviews/666b894f00000196-CD93_Multimerin_2_β1_integrin_complex_function_in_angiogenesis__Human_.md
go-cam-reviews/62b4ffe300005014-Poxvirus_OPG176_inhibition_of_hostTLR4_signaling__Human_Poxvirus__.md
go-cam-reviews/62f58d8800003536-Protein_import_into_peroxisomes__of_PTS2_containing_proteins_by_the_PEX7_receptor_and_isoform_PEX5L_of_PEX5__Human_.md
go-cam-reviews/63a86a8600000288-positive_regulation_of_transcription_from_RNA_polymerase_II_promoter_by_glucose_2__Mouse_.md
go-cam-reviews/63d320cd00001688-Response_to_ribosome_stalling_by_GCN1__RNF14_and_RNF25__leading_to_ubiquitination_and_degradation_of_EEF1A1__Human_.md
go-cam-reviews/646ff70100004025-Activation_of_the_canonical_mTORC1_signaling_via_non_catalytic_deubiquitination_of_RPTOR_by_OTUB1__Human_.md
go-cam-reviews/66187e4700000246-The_CRL5_ASB9__complex_mediates_ubiquitination_and_degradation_of_CKB__Human__.md
go-cam-reviews/MGI_MGI_109482-Cacna1a__MGI_MGI_109482_.md
go-cam-reviews/6197061700002397-Fatty_acid_transport_by_CD36_via_LYN_mediated_endocytosis__Human_.md
go-cam-reviews/66187e4700001597-The_growth_hormone_receptor_signaling_pathway__Human__.md
go-cam-reviews/63894f2500000740-FIP200_ubiquitination_by_TRIM21_leading_to_autophagy_inhibition__Human_.md
go-cam-reviews/60ad85f700003288-_de_novo__UMP_biosynthetic_process__Mouse_.md
go-cam-reviews/60897d8500000531-AMP_salvage__Mouse_.md
go-cam-reviews/65d7e4ac00002290-Glycogen_catabolic_process__Dmel_.md
go-cam-reviews/5fa76ad400000110-GMP_catabolic_process_to_allantoin__Mouse_.md
go-cam-reviews/66b5638000000808-Ubiquitination_and_degradation_of_NFE2L2_NRF2_by_KEAP1_in_absence_of_stress__Human__.md
go-cam-reviews/5f46c3b700003884-AMP_catabolic_process_to_allantoin__Mouse_.md
go-cam-reviews/6205c24300000330-Microtubule_polyglutamylation_regulation__Human_.md
go-cam-reviews/627d95ee00000044-3__phosphoadenosine_5__phosphosulfate_biosynthetic_process__Mouse_.md
go-cam-reviews/646ff70100005137-IL33_signaling_pathway__Human_.md
go-cam-reviews/6606056e00001308-Retinoic_acid_binds_and_activates_RARA_and_RXRA_nuclear_receptors__Human__.md
go-cam-reviews/62b4ffe300000906-Poxvirus_OPG065_inhibition_of_ISG15_conjugation__Human_Poxvirus__.md
go-cam-reviews/653b0ce600001283-KSHV_ORF57_inhibition_of_host_P_body_formation__Human_HHV8__.md
go-cam-reviews/65d7e4ac00001363-Mitochondrial_calcium_uptake_by_the_uniplex_complex_composed_of_SMDT1_EMRE__MICU1__MICU2_and_MCU__Human__.md
go-cam-reviews/6348a65d00000093-USP20_inhibition_of_NF_kappa_B_signaling_via_TRAF6_deubiquitination__Human_.md
go-cam-reviews/62d0afa500000132-Gluconeogenesis_2__Mouse_.md
go-cam-reviews/641ce4dc00000050-NOD2_signaling_in_response_to_muramyl_dipeptide__MDP___leading_to_NF_kappa_B_and_MAPK_kinase_activation___Human_.md
go-cam-reviews/62b4ffe300006474-B_cell_receptor_signaling_pathway_1__Mouse_.md
go-cam-reviews/66187e4700001744-meiotic_cohesion_protection_in_anaphase_I__GO_1990813_.md
go-cam-reviews/617b481400000389-KAT5_regulation_of_the_cytoskeleton_by_acetylation_of_proteins__Human_.md
go-cam-reviews/65f3ae5c00002208-Positive_regulation_of_glycogen_catabolic_process_1__Mouse_.md
go-cam-reviews/60897d8500000494-IMP_salvage__Mouse_.md
go-cam-reviews/63e5937500001279-Extraction_of_mRNA_from_stalled_ribosomes_by_the_SKI_complex__leading_to_recruitment_of_the_PELO_HBS1L_complex_that_binds_to_stalled_ribosomes__followed_by_ribosome_dissociation_by_ABCE1__Human_.md
go-cam-reviews/646ff70100002557-Negative_regulation__of_autophagy_via_phosphorylation_of_ULK1_by_canonical_mTORC1_signaling__Human_.md
go-cam-reviews/60418ffa00000811-Inosine_catabolic_process__Mouse_.md
go-cam-reviews/662af8fa00002572-Activation_of_the_non_canonical_inflammasome_mediated_by_Casp11_upon_lipopolysaccharide_binding_can_lead_to_blood_brain_barrier_breakdown__Mouse_.md
go-cam-reviews/66a3e0bb00001796-Signaling_by_Amylin_mediated_by_IAPP_ligand_activating_CALCR_RAMP1__AMYR1__receptor_complex__Human_.md
go-cam-reviews/653b0ce600000202-BRD3_and_lncRNA_DIGIT_form_phase_separated_condensates_to_induce_endoderm_cell_differentiation__Human__.md
go-cam-reviews/60418ffa00001258-Deoxyadenosine_catabolic_process__Mouse_.md
go-cam-reviews/60ff660000000897-GMP_salvage_2b__from_adenosine__Mouse_.md
go-cam-reviews/64e7eefa00001978-ALKBH5_is_involved_in_paraspeckle_assembly_and_is_regulated_by_acetylation_and_deacetylation_by_KAT8_and_HDAC7__respectively__Human__.md
go-cam-reviews/654d809000000010-Regulation_of_aggrephagy_via_palmitoylation_and_depalmitoylation_of_SQSTM1_by_ZDHHC19_and_LYPLA1__respectively___Human__.md
go-cam-reviews/627d95ee00000472-IL15_signaling_pathway__Human_.md
go-cam-reviews/645d887900000340-Coenzyme_A_biosynthetic_process_1__Mouse_.md
go-cam-reviews/61e0e55600002253-Activation_of_ALK_and_LTK_by_ALKAL1_and_ALKAL2_cytokines__Human_.md
go-cam-reviews/66187e4700002881-IFNA1_CR2_role_in_B_cell_ISGs_induction__Human_.md
go-cam-reviews/62900b6400001630-PTEN_in_excitatory_hippocampal_synapse_long_term_depression__Human_.md
go-cam-reviews/613aae0000000885-SP_ANN_PTPRM.md
go-cam-reviews/5fce9b7300001742-Strap_in_alternative_splicing_mouse.md
go-cam-reviews/6246724f00000078-Glucuronate_catabolic_process_to_xylulose_5_phosphate__Mouse_.md
go-cam-reviews/662af8fa00002657-Activation_of_the_non_canonical_inflammasome_mediated_by_CASP4_upon_lipopolysaccharide_binding_can_lead_to_blood_brain_barrier_breakdown__Human_.md
go-cam-reviews/61f34dd300001044-Yeast_ergosterol.md
go-cam-reviews/65039e8700001110-TRIM69_activation_of_STK3_by_ubiquitination_leading_to_centrosome_separation__Human_.md
go-cam-reviews/6348a65d00001727-Negative_regulation_of_inflammatory_response_to_wounding_by_REG3A___Human_.md
go-cam-reviews/653b0ce600001230-KSHV_ORF57_inhibition_of_host_PKR__Human_HHV8__.md
go-cam-reviews/6197061700001643-Epidermal_growth_factor_receptor_signaling_pathway_3__Mouse__.md
go-cam-reviews/5fadbcf000002129-Sphingomyelin_phosphodiesterase_activity_involved_in_viral_entry__Human_Sars_Cov_2_.md
go-cam-reviews/64e7eefa00000854-Tumor_necrosis_factor_mediated_signaling_pathway_1__Mouse_.md
go-cam-reviews/66a3e0bb00002776-TMEFF1_restricts_herpes_simplex_virus_1__HHV_1__in_the_brain_by_blocking_the_association_between_MYH9_and_the_viral_envelope_glycoprotein_B__Human__.md
go-cam-reviews/60418ffa00000414-Adenosine_catabolic_process__Mouse_.md
go-cam-reviews/646ff70100004606-Inhibition_of_the_canonical_mTORC1_signaling__by_TSC2_in_response_to_starvation__Human_.md
print("Done")
Done