core[patch]: Remove old accidental commit (#30483)

Remove commented out file that was accidentally added

Co-authored-by: ccurme <chester.curme@gmail.com>
This commit is contained in:
Eugene Yurtsev 2025-03-25 18:37:20 -04:00 committed by GitHub
parent 4b9e2e51f3
commit 9f345d64fd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,15 +0,0 @@
# from langchain_core.runnables.base import RunnableBinding
# class RunnableLearnable(RunnableBinding):
# def __init__(self, *args, **kwargs):
# super().__init__(*args, **kwargs)
# self.parameters = []
# def backward(self):
# for param in self.parameters:
# param.backward()
# def update(self, optimizer):
# for param in self.parameters:
# optimizer.update(param)